MLA-C01 • Practice Test 2 — 10 Questions
Free MLA-C01 practice test 2 — 10 questions with explanations. No signup required.
Refer to the exhibit. A data scientist creates a SageMaker Pipeline definition using the JSON shown. The pipeline runs successfully, but the scientist notices that the training step did not use the parameter 'TrainingInstanceCount' defined in Parameters. Why did this happen?
{
"PipelineExperimentConfig": {
"ExperimentName": "my-experiment",
"TrialName": "my-trial"
},
"Parameters": {
"TrainingInstanceType": "ml.m5.large",
"TrainingInstanceCount": 2,
"MaxRuntimeInSeconds": 86400
},
"Steps": [
{
"Name": "Preprocess",
"Type": "Processing",
"ProcessingJobName": "preprocess-job",
"ProcessingResources": {
"ClusterConfig": {
"InstanceCount": 1,
"InstanceType": "ml.m5.large",
"VolumeSizeInGB": 30
}
}
},
{
"Name": "Train",
"Type": "Training",
"TrainingJobName": "train-job",
"AlgorithmSpecification": {
"TrainingImage": "123456789012.dkr.ecr.us-east-1.amazonaws.com/my-algo:latest",
"TrainingInputMode": "File"
},
"ResourceConfig": {
"InstanceCount": 2,
"InstanceType": "ml.m5.large",
"VolumeSizeInGB": 30
}
}
]
}