I am experimenting with different containers for training and inference based on tutorial on aws sagemaker documentation. I'm using deep learning containers provided by aws here https://github.com/aws/deep-learning-containers/blob/master/available_images.md , such as this 763104351884.dkr.ecr.us-east-1.amazonaws.com/huggingface-pytorch-training:1.10.2-transformers4.17.0-gpu-py38-cu113-ubuntu20.04 to create models.
Model:
Type: "AWS::SageMaker::Model"
Properties:
PrimaryContainer:
Image: '763104351884.dkr.ecr.us-east-1.amazonaws.com/huggingface-pytorch-training:1.10.2-transformers4.17.0-gpu-py38-cu113-ubuntu20.04'
ExecutionRoleArn: !GetAtt ExecutionRole.Arn
I am trying to see , if i can download this image locally via docker pull, but what account do i need to download this ?
i have an aws account, would i be able to download from 763104351884.dkr.ecr.us-east-1.amazonaws.com this url via my free account?