@@ -158,7 +158,8 @@ def __init__(
158
158
estimator (EstimatorBase): A `sagemaker.estimator.EstimatorBase` instance.
159
159
inputs (TrainingInput): A `sagemaker.inputs.TrainingInput` instance. Defaults to `None`.
160
160
cache_config (CacheConfig): A `sagemaker.workflow.steps.CacheConfig` instance.
161
- depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.TrainingStep` depends on
161
+ depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.TrainingStep`
162
+ depends on
162
163
"""
163
164
super (TrainingStep , self ).__init__ (name , StepTypeEnum .TRAINING , depends_on )
164
165
self .estimator = estimator
@@ -215,7 +216,8 @@ def __init__(
215
216
model (Model): A `sagemaker.model.Model` instance.
216
217
inputs (CreateModelInput): A `sagemaker.inputs.CreateModelInput` instance.
217
218
Defaults to `None`.
218
- depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.CreateModelStep` depends on
219
+ depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.CreateModelStep`
220
+ depends on
219
221
"""
220
222
super (CreateModelStep , self ).__init__ (name , StepTypeEnum .CREATE_MODEL , depends_on )
221
223
self .model = model
@@ -272,7 +274,8 @@ def __init__(
272
274
transformer (Transformer): A `sagemaker.transformer.Transformer` instance.
273
275
inputs (TransformInput): A `sagemaker.inputs.TransformInput` instance.
274
276
cache_config (CacheConfig): A `sagemaker.workflow.steps.CacheConfig` instance.
275
- depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.TransformStep` depends on
277
+ depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.TransformStep`
278
+ depends on
276
279
"""
277
280
super (TransformStep , self ).__init__ (name , StepTypeEnum .TRANSFORM , depends_on )
278
281
self .transformer = transformer
@@ -356,7 +359,8 @@ def __init__(
356
359
property_files (List[PropertyFile]): A list of property files that workflow looks
357
360
for and resolves from the configured processing output list.
358
361
cache_config (CacheConfig): A `sagemaker.workflow.steps.CacheConfig` instance.
359
- depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.ProcessingStep` depends on
362
+ depends_on (List[str]): A list of step names this `sagemaker.workflow.steps.ProcessingStep`
363
+ depends on
360
364
"""
361
365
super (ProcessingStep , self ).__init__ (name , StepTypeEnum .PROCESSING , depends_on )
362
366
self .processor = processor
0 commit comments