sagemaker-core 1.0.33__py3-none-any.whl → 1.0.34__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sagemaker-core might be problematic. Click here for more details.
- sagemaker_core/main/code_injection/shape_dag.py +1 -1
- sagemaker_core/main/resources.py +1 -4
- sagemaker_core/main/shapes.py +2 -2
- {sagemaker_core-1.0.33.dist-info → sagemaker_core-1.0.34.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.33.dist-info → sagemaker_core-1.0.34.dist-info}/RECORD +8 -8
- {sagemaker_core-1.0.33.dist-info → sagemaker_core-1.0.34.dist-info}/WHEEL +1 -1
- {sagemaker_core-1.0.33.dist-info → sagemaker_core-1.0.34.dist-info}/licenses/LICENSE +0 -0
- {sagemaker_core-1.0.33.dist-info → sagemaker_core-1.0.34.dist-info}/top_level.txt +0 -0
|
@@ -10291,9 +10291,9 @@ SHAPE_DAG = {
|
|
|
10291
10291
|
"MetricDatum": {
|
|
10292
10292
|
"members": [
|
|
10293
10293
|
{"name": "MetricName", "shape": "AutoMLMetricEnum", "type": "string"},
|
|
10294
|
+
{"name": "StandardMetricName", "shape": "AutoMLMetricExtendedEnum", "type": "string"},
|
|
10294
10295
|
{"name": "Value", "shape": "Float", "type": "float"},
|
|
10295
10296
|
{"name": "Set", "shape": "MetricSetSource", "type": "string"},
|
|
10296
|
-
{"name": "StandardMetricName", "shape": "AutoMLMetricExtendedEnum", "type": "string"},
|
|
10297
10297
|
],
|
|
10298
10298
|
"type": "structure",
|
|
10299
10299
|
},
|
sagemaker_core/main/resources.py
CHANGED
|
@@ -6476,7 +6476,6 @@ class DataQualityJobDefinition(Base):
|
|
|
6476
6476
|
"monitoring_job_definition_name": "job_definition_name",
|
|
6477
6477
|
"monitoring_job_definition_arn": "job_definition_arn",
|
|
6478
6478
|
}
|
|
6479
|
-
|
|
6480
6479
|
# serialize the input request
|
|
6481
6480
|
operation_input_args = serialize(operation_input_args)
|
|
6482
6481
|
logger.debug(f"Serialized input request: {operation_input_args}")
|
|
@@ -7369,6 +7368,7 @@ class Domain(Base):
|
|
|
7369
7368
|
"domain_execution_role_arn": {"type": "string"}
|
|
7370
7369
|
},
|
|
7371
7370
|
"execution_role_identity_config": {"type": "string"},
|
|
7371
|
+
"unified_studio_settings": {"project_s3_path": {"type": "string"}},
|
|
7372
7372
|
},
|
|
7373
7373
|
"home_efs_file_system_kms_key_id": {"type": "string"},
|
|
7374
7374
|
"subnet_ids": {"type": "array", "items": {"type": "string"}},
|
|
@@ -18664,7 +18664,6 @@ class ModelBiasJobDefinition(Base):
|
|
|
18664
18664
|
"monitoring_job_definition_name": "job_definition_name",
|
|
18665
18665
|
"monitoring_job_definition_arn": "job_definition_arn",
|
|
18666
18666
|
}
|
|
18667
|
-
|
|
18668
18667
|
# serialize the input request
|
|
18669
18668
|
operation_input_args = serialize(operation_input_args)
|
|
18670
18669
|
logger.debug(f"Serialized input request: {operation_input_args}")
|
|
@@ -19895,7 +19894,6 @@ class ModelExplainabilityJobDefinition(Base):
|
|
|
19895
19894
|
"monitoring_job_definition_name": "job_definition_name",
|
|
19896
19895
|
"monitoring_job_definition_arn": "job_definition_arn",
|
|
19897
19896
|
}
|
|
19898
|
-
|
|
19899
19897
|
# serialize the input request
|
|
19900
19898
|
operation_input_args = serialize(operation_input_args)
|
|
19901
19899
|
logger.debug(f"Serialized input request: {operation_input_args}")
|
|
@@ -21514,7 +21512,6 @@ class ModelQualityJobDefinition(Base):
|
|
|
21514
21512
|
"monitoring_job_definition_name": "job_definition_name",
|
|
21515
21513
|
"monitoring_job_definition_arn": "job_definition_arn",
|
|
21516
21514
|
}
|
|
21517
|
-
|
|
21518
21515
|
# serialize the input request
|
|
21519
21516
|
operation_input_args = serialize(operation_input_args)
|
|
21520
21517
|
logger.debug(f"Serialized input request: {operation_input_args}")
|
sagemaker_core/main/shapes.py
CHANGED
|
@@ -1743,15 +1743,15 @@ class MetricDatum(Base):
|
|
|
1743
1743
|
Attributes
|
|
1744
1744
|
----------------------
|
|
1745
1745
|
metric_name: The name of the metric.
|
|
1746
|
+
standard_metric_name: The name of the standard metric. For definitions of the standard metrics, see Autopilot candidate metrics .
|
|
1746
1747
|
value: The value of the metric.
|
|
1747
1748
|
set: The dataset split from which the AutoML job produced the metric.
|
|
1748
|
-
standard_metric_name: The name of the standard metric. For definitions of the standard metrics, see Autopilot candidate metrics .
|
|
1749
1749
|
"""
|
|
1750
1750
|
|
|
1751
1751
|
metric_name: Optional[str] = Unassigned()
|
|
1752
|
+
standard_metric_name: Optional[str] = Unassigned()
|
|
1752
1753
|
value: Optional[float] = Unassigned()
|
|
1753
1754
|
set: Optional[str] = Unassigned()
|
|
1754
|
-
standard_metric_name: Optional[str] = Unassigned()
|
|
1755
1755
|
|
|
1756
1756
|
|
|
1757
1757
|
class CandidateProperties(Base):
|
|
@@ -7,15 +7,15 @@ sagemaker_core/main/config_schema.py,sha256=Wxe2gJash1rrxBomGhSYmII1LmJ3E70LIuSW
|
|
|
7
7
|
sagemaker_core/main/exceptions.py,sha256=87DUlrmHxaWoiYNlpNY9ixxFMPRk_dIGPsA2e_xdVwQ,5602
|
|
8
8
|
sagemaker_core/main/intelligent_defaults_helper.py,sha256=5SDM6UavZtp-k5LhqRL7GRIDgzFB5UsC_p7YuiSPK9A,8334
|
|
9
9
|
sagemaker_core/main/logs.py,sha256=yfEH7uP91nbE1lefymOlBr81ziBzsDSIOF2Qyd54FJE,6241
|
|
10
|
-
sagemaker_core/main/resources.py,sha256=
|
|
11
|
-
sagemaker_core/main/shapes.py,sha256=
|
|
10
|
+
sagemaker_core/main/resources.py,sha256=0xbgQy8-PH6vzlYyaGzwyo3A_Nij8WedvXYQNy4MFvo,1427888
|
|
11
|
+
sagemaker_core/main/shapes.py,sha256=JuLWvrd3YSaVMnmERMB0jOPLtpAu98O5icSf7BwBpVU,739047
|
|
12
12
|
sagemaker_core/main/user_agent.py,sha256=BPYDAfDd70ObP-VAjl7aDHALHyGknkpRP21ktVr_LDw,2744
|
|
13
13
|
sagemaker_core/main/utils.py,sha256=tJyHjHFwwmz8LHMlOLf5_Exu4h-kFVnAxvXkbChkuHQ,19215
|
|
14
14
|
sagemaker_core/main/code_injection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
sagemaker_core/main/code_injection/base.py,sha256=11_Jif0nOzfbLGlXaacKf-wcizzfS64U0OSZGoVffFU,1733
|
|
16
16
|
sagemaker_core/main/code_injection/codec.py,sha256=nA51E9iNWHyKou1G23rKSRL4WitdkFRbMuFkyrGHzKU,8428
|
|
17
17
|
sagemaker_core/main/code_injection/constants.py,sha256=2ICExGge8vAWx7lSTW0JGh-bH1korkvpOpDu5M63eI4,980
|
|
18
|
-
sagemaker_core/main/code_injection/shape_dag.py,sha256=
|
|
18
|
+
sagemaker_core/main/code_injection/shape_dag.py,sha256=qlfWAkFaAilQXGIIzKymRbGaeRYUdEM_Wk5QFV_kbIA,704183
|
|
19
19
|
sagemaker_core/resources/__init__.py,sha256=EAYTFMN-nPjnPjjBbhIUeaL67FLKNPd7qbcbl9VIrws,31
|
|
20
20
|
sagemaker_core/shapes/__init__.py,sha256=RnbIu9eTxKt-DNsOFJabrWIgrrtS9_SdAozP9JBl_ic,28
|
|
21
21
|
sagemaker_core/tools/__init__.py,sha256=xX79JImxCVzrWMnjgntLCve2G5I-R4pRar5s20kT9Rs,56
|
|
@@ -28,8 +28,8 @@ sagemaker_core/tools/resources_extractor.py,sha256=hN61ehZbPnhFW-2FIVDi7NsEz4rLv
|
|
|
28
28
|
sagemaker_core/tools/shapes_codegen.py,sha256=4lsePZpjk7M6RpJs5yar_m4z5MzwGHFrvCkdS_-R12c,12172
|
|
29
29
|
sagemaker_core/tools/shapes_extractor.py,sha256=vxVKjXD3lmjrkoKiexjUnOt8ITbFxQSeiDtx7P6Qtkw,14226
|
|
30
30
|
sagemaker_core/tools/templates.py,sha256=0lOIH3Rq2CXWkQhK6VenN_TE_v5p852s2kQyb_BeQxA,23460
|
|
31
|
-
sagemaker_core-1.0.
|
|
32
|
-
sagemaker_core-1.0.
|
|
33
|
-
sagemaker_core-1.0.
|
|
34
|
-
sagemaker_core-1.0.
|
|
35
|
-
sagemaker_core-1.0.
|
|
31
|
+
sagemaker_core-1.0.34.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
32
|
+
sagemaker_core-1.0.34.dist-info/METADATA,sha256=McgLTFJ0c7js-mQ3bRNxSBxggXoU-eFz1yQY6SUp8To,4885
|
|
33
|
+
sagemaker_core-1.0.34.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
34
|
+
sagemaker_core-1.0.34.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
35
|
+
sagemaker_core-1.0.34.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|