@@ -1103,8 +1103,8 @@ def fit(
1103
1103
job_name (str): Training job name. If not specified, the estimator generates
1104
1104
a default job name based on the training image name and current timestamp.
1105
1105
experiment_config (dict[str, str]): Experiment management configuration.
1106
- Optionally, the dict can contain three keys:
1107
- 'ExperimentName', 'TrialName', and 'TrialComponentDisplayName' .
1106
+ Optionally, the dict can contain four keys:
1107
+ 'ExperimentName', 'TrialName', 'TrialComponentDisplayName' and 'RunName'. .
1108
1108
The behavior of setting these keys is as follows:
1109
1109
* If `ExperimentName` is supplied but `TrialName` is not a Trial will be
1110
1110
automatically created and the job's Trial Component associated with the Trial.
@@ -2023,8 +2023,8 @@ def start_new(cls, estimator, inputs, experiment_config):
2023
2023
inputs (str): Parameters used when called
2024
2024
:meth:`~sagemaker.estimator.EstimatorBase.fit`.
2025
2025
experiment_config (dict[str, str]): Experiment management configuration.
2026
- Optionally, the dict can contain three keys:
2027
- 'ExperimentName', 'TrialName', and 'TrialComponentDisplayName '.
2026
+ Optionally, the dict can contain four keys:
2027
+ 'ExperimentName', 'TrialName', 'TrialComponentDisplayName' and 'RunName '.
2028
2028
The behavior of setting these keys is as follows:
2029
2029
* If `ExperimentName` is supplied but `TrialName` is not a Trial will be
2030
2030
automatically created and the job's Trial Component associated with the Trial.
@@ -2033,6 +2033,7 @@ def start_new(cls, estimator, inputs, experiment_config):
2033
2033
* If both `ExperimentName` and `TrialName` are not supplied the trial component
2034
2034
will be unassociated.
2035
2035
* `TrialComponentDisplayName` is used for display in Studio.
2036
+ * `RunName` is used to record an experiment run.
2036
2037
Returns:
2037
2038
sagemaker.estimator._TrainingJob: Constructed object that captures
2038
2039
all information about the started training job.
@@ -2053,8 +2054,8 @@ def _get_train_args(cls, estimator, inputs, experiment_config):
2053
2054
inputs (str): Parameters used when called
2054
2055
:meth:`~sagemaker.estimator.EstimatorBase.fit`.
2055
2056
experiment_config (dict[str, str]): Experiment management configuration.
2056
- Optionally, the dict can contain three keys:
2057
- 'ExperimentName', 'TrialName', and 'TrialComponentDisplayName '.
2057
+ Optionally, the dict can contain four keys:
2058
+ 'ExperimentName', 'TrialName', 'TrialComponentDisplayName' and 'RunName '.
2058
2059
The behavior of setting these keys is as follows:
2059
2060
* If `ExperimentName` is supplied but `TrialName` is not a Trial will be
2060
2061
automatically created and the job's Trial Component associated with the Trial.
@@ -2063,6 +2064,7 @@ def _get_train_args(cls, estimator, inputs, experiment_config):
2063
2064
* If both `ExperimentName` and `TrialName` are not supplied the trial component
2064
2065
will be unassociated.
2065
2066
* `TrialComponentDisplayName` is used for display in Studio.
2067
+ * `RunName` is used to record an experiment run.
2066
2068
2067
2069
Returns:
2068
2070
Dict: dict for `sagemaker.session.Session.train` method
0 commit comments