You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe how documentation can be improved
How do you make the call to get the uri of custom docker image using the library sagemaker-training? This docker image is not using any of the prebuilt frameworks.
Additional context
Before you just did: container_image_uri = get_image_uri(repo_name, repo_region, repo_version)
The above was specially useful when you were bringing your own custom docker images that were not using a framework in particular.
Kind regards,
Walter
The text was updated successfully, but these errors were encountered:
I was using get_image_uri as an automatic way to get the container url in ecr to pass to the estimator, but for what I see, it is not possible to do so anymore with the way that image_uris.retrieve() works
I am closing this issue. I am leaving a solution here if someone comes in the future into this thread with the same issue, a solution to get the container ecr uri is to do: '{0}.dkr.ecr.{1}.amazonaws.com/{2}:{3}'.format(account_id, region_name, ecr_repository_name, version)
What did you find confusing? Please describe.
The call
sagemaker.amazon.amazon_estimator.get_image_uri
was migrated tosagemaker.image_uris.retrieve
. There is no information about how to make the calls to get the image url of a custom docker image in ecr that was created using Sagemaker .Describe how documentation can be improved
How do you make the call to get the uri of custom docker image using the library sagemaker-training? This docker image is not using any of the prebuilt frameworks.
Additional context
Before you just did:
container_image_uri = get_image_uri(repo_name, repo_region, repo_version)
The above was specially useful when you were bringing your own custom docker images that were not using a framework in particular.
Kind regards,
Walter
The text was updated successfully, but these errors were encountered: