We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to have a few models for the users to choose from and then make them available for SageMaker inside of a S3 bucket.
The text was updated successfully, but these errors were encountered:
Just a snippet of code I had that informed me of the fact that there are existing models that we can copy over:
# download JumpStart model_manifest file. boto3.client("s3").download_file( f"jumpstart-cache-prod-{aws_region}", "models_manifest.json", "models_manifest.json" ) with open("models_manifest.json", "rb") as json_file: model_list = json.load(json_file) # filter-out all the Text Embedding models from the manifest list. text_embedding_models = [] for model in model_list: model_id = model["model_id"] if "-tcembedding-" in model_id and model_id not in text_embedding_models: text_embedding_models.append(model_id)
Sorry, something went wrong.
wesdottoday
When branches are created from issues, their pull requests are automatically linked.
We need to have a few models for the users to choose from and then make them available for SageMaker inside of a S3 bucket.
The text was updated successfully, but these errors were encountered: