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 d7ed025 commit 3641c2bCopy full SHA for 3641c2b
src/sagemaker/telemetry/constants.py
@@ -27,7 +27,7 @@ class Feature(Enum):
27
REMOTE_FUNCTION = 3
28
MODEL_TRAINER = 4
29
ESTIMATOR = 5
30
- HYPERPOD = 6
+ HYPERPOD = 6 # Added to support telemetry in sagemaker-hyperpod-cli
31
32
def __str__(self): # pylint: disable=E0307
33
"""Return the feature name."""
src/sagemaker/telemetry/telemetry_logging.py
@@ -55,7 +55,7 @@
55
str(Feature.REMOTE_FUNCTION): 3,
56
str(Feature.MODEL_TRAINER): 4,
57
str(Feature.ESTIMATOR): 5,
58
- str(Feature.HYPERPOD): 6,
+ str(Feature.HYPERPOD): 6, # Added to support telemetry in sagemaker-hyperpod-cli
59
}
60
61
STATUS_TO_CODE = {
0 commit comments