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 ce10e01 commit 6abf3afCopy full SHA for 6abf3af
src/sagemaker/session.py
@@ -3176,6 +3176,9 @@ def tune( # noqa: C901
3176
tune_request["Autotune"] = {"Mode": "Enabled"}
3177
3178
tags = _append_project_tags(tags)
3179
+ tags = self._append_sagemaker_config_tags(
3180
+ tags, "{}.{}.{}".format(SAGEMAKER, TRAINING_JOB, TAGS)
3181
+ )
3182
if tags is not None:
3183
tune_request["Tags"] = tags
3184
@@ -3287,6 +3290,9 @@ def _get_tuning_request(
3287
3290
tune_request["WarmStartConfig"] = warm_start_config
3288
3291
3289
3292
tags = _append_project_tags(format_tags(tags))
3293
3294
3295
3296
3297
3298
0 commit comments