Skip to content

Commit c914585

Browse files
committed
Edited inputs as strings due to sdk changes aws/sagemaker-python-sdk#3141
1 parent 68cfa25 commit c914585

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

labs/04_workflow_sm_pipelines/04_workflow_sm_pipelines.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@
7171
"input_data = ParameterString(name=\"InputData\", default_value=raw_s3)\n",
7272
"\n",
7373
"# processing step parameters\n",
74-
"processing_instance_type = ParameterString(name=\"ProcessingInstanceType\", default_value=\"ml.m5.xlarge\")\n",
74+
"processing_instance_type = \"ml.m5.xlarge\"\n",
7575
"processing_instance_count = ParameterInteger(name=\"ProcessingInstanceCount\", default_value=1)\n",
7676
"\n",
7777
"# training step parameters\n",
78-
"training_instance_type = ParameterString(name=\"TrainingInstanceType\", default_value=\"ml.c5.2xlarge\")\n",
78+
"training_instance_type = \"ml.c5.2xlarge\"\n",
7979
"training_instance_count = ParameterInteger(name=\"TrainingInstanceCount\", default_value=1)\n",
8080
"\n",
8181
"# batch inference step parameters\n",
82-
"batch_instance_type = ParameterString(name=\"BatchInstanceType\", default_value=\"ml.c5.xlarge\")\n",
82+
"batch_instance_type = \"ml.c5.xlarge\"\n",
8383
"batch_instance_count = ParameterInteger(name=\"BatchInstanceCount\", default_value=1)"
8484
]
8585
},
@@ -679,4 +679,4 @@
679679
},
680680
"nbformat": 4,
681681
"nbformat_minor": 4
682-
}
682+
}

0 commit comments

Comments
 (0)