MLS-C01 • Practice Test 17
Free MLS-C01 practice test — 15 questions with explanations. Set 17. No signup required.
Refer to the exhibit. The training job 'my-job' failed with the error 'Unable to pull image from ECR'. What is the most likely cause?
Refer to the exhibit.
```
aws sagemaker create-training-job \
--training-job-name my-job \
--algorithm-specification TrainingImage=123456789012.dkr.ecr.us-east-1.amazonaws.com/my-custom-image:latest,TrainingInputMode=File \
--role-arn arn:aws:iam::123456789012:role/SageMakerRole \
--input-data-config ChannelName=training,DataSource={S3DataSource={S3Uri=s3://my-bucket/train/,S3DataType=S3Prefix,S3DataDistributionType=FullyReplicated}} \
--output-data-config S3OutputPath=s3://my-bucket/output/ \
--resource-config InstanceType=ml.m5.large,InstanceCount=1,VolumeSizeInGB=10 \
--stopping-condition MaxRuntimeInSeconds=3600
```