We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9301d2c commit ec7175cCopy full SHA for ec7175c
ML Pipelines scripts/pipeline.py
@@ -106,12 +106,8 @@ def get_pipeline(
106
processing_instance_count = ParameterInteger(
107
name="ProcessingInstanceCount", default_value=1
108
)
109
- processing_instance_type = ParameterString(
110
- name="ProcessingInstanceType", default_value="ml.m5.xlarge"
111
- )
112
- training_instance_type = ParameterString(
113
- name="TrainingInstanceType", default_value="ml.m5.xlarge"
114
+ processing_instance_type = "ml.m5.xlarge"
+ training_instance_type = "ml.m5.xlarge"
115
model_approval_status = ParameterString(
116
name="ModelApprovalStatus",
117
default_value="PendingManualApproval", # ModelApprovalStatus can be set to a default of "Approved" if you don't want manual approval.
0 commit comments