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.
2 parents 634b8f6 + d7ecd93 commit ef92bcfCopy full SHA for ef92bcf
src/sagemaker/session.py
@@ -3193,6 +3193,9 @@ def tune( # noqa: C901
3193
tune_request["Autotune"] = {"Mode": "Enabled"}
3194
3195
tags = _append_project_tags(tags)
3196
+ tags = self._append_sagemaker_config_tags(
3197
+ tags, "{}.{}.{}".format(SAGEMAKER, TRAINING_JOB, TAGS)
3198
+ )
3199
if tags is not None:
3200
tune_request["Tags"] = tags
3201
@@ -3304,6 +3307,9 @@ def _get_tuning_request(
3304
3307
tune_request["WarmStartConfig"] = warm_start_config
3305
3308
3306
3309
tags = _append_project_tags(format_tags(tags))
3310
3311
3312
3313
3314
3315
0 commit comments