Skip to content

Commit d34128b

Browse files
committedJun 17, 2021
clear up the documentation
1 parent efeaf21 commit d34128b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/stepfunctions/steps/sagemaker.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ def __init__(self, state_id, estimator, job_name, data=None, hyperparameters=Non
6868
* (list[sagemaker.amazon.amazon_estimator.RecordSet]) - A list of
6969
:class:`sagemaker.amazon.amazon_estimator.RecordSet` objects,
7070
where each instance is a different channel of training data.
71-
hyperparameters (dict, optional): Specify the hyperparameters that are set before the model begins training. If hyperparameters provided are also specified in the estimator, the provided value will used. (Default: Hyperparameters specified in the estimator will be used for training.)
71+
hyperparameters (dict, optional): Parameters used for training.
72+
Hyperparameters supplied will be merged with the Hyperparameters specified in the estimator.
73+
If there are duplicate entries, the value provided through this property will be used. (Default: Hyperparameters specified in the estimator.)
7274
mini_batch_size (int): Specify this argument only when estimator is a built-in estimator of an Amazon algorithm. For other estimators, batch size should be specified in the estimator.
7375
experiment_config (dict, optional): Specify the experiment config for the training. (Default: None)
7476
wait_for_completion (bool, optional): Boolean value set to `True` if the Task state should wait for the training job to complete before proceeding to the next step in the workflow. Set to `False` if the Task state should submit the training job and proceed to the next step. (default: True)

0 commit comments

Comments
 (0)
Please sign in to comment.