sagemaker-core 1.0.6__py3-none-any.whl → 1.0.8__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.
@@ -797,6 +797,16 @@ SHAPE_DAG = {
797
797
  ],
798
798
  "type": "structure",
799
799
  },
800
+ "BatchGetMetricsRequest": {
801
+ "members": [{"name": "MetricQueries", "shape": "MetricQueryList", "type": "list"}],
802
+ "type": "structure",
803
+ },
804
+ "BatchGetMetricsResponse": {
805
+ "members": [
806
+ {"name": "MetricQueryResults", "shape": "MetricQueryResultList", "type": "list"}
807
+ ],
808
+ "type": "structure",
809
+ },
800
810
  "BatchGetRecordError": {
801
811
  "members": [
802
812
  {"name": "FeatureGroupName", "shape": "ValueAsString", "type": "string"},
@@ -6563,7 +6573,24 @@ SHAPE_DAG = {
6563
6573
  },
6564
6574
  "Groups": {"member_shape": "Group", "member_type": "string", "type": "list"},
6565
6575
  "HiddenAppTypesList": {"member_shape": "AppType", "member_type": "string", "type": "list"},
6576
+ "HiddenInstanceTypesList": {
6577
+ "member_shape": "AppInstanceType",
6578
+ "member_type": "string",
6579
+ "type": "list",
6580
+ },
6566
6581
  "HiddenMlToolsList": {"member_shape": "MlTools", "member_type": "string", "type": "list"},
6582
+ "HiddenSageMakerImage": {
6583
+ "members": [
6584
+ {"name": "SageMakerImageName", "shape": "SageMakerImageName", "type": "string"},
6585
+ {"name": "VersionAliases", "shape": "VersionAliasesList", "type": "list"},
6586
+ ],
6587
+ "type": "structure",
6588
+ },
6589
+ "HiddenSageMakerImageVersionAliasesList": {
6590
+ "member_shape": "HiddenSageMakerImage",
6591
+ "member_type": "structure",
6592
+ "type": "list",
6593
+ },
6567
6594
  "HolidayConfig": {
6568
6595
  "member_shape": "HolidayConfigAttributes",
6569
6596
  "member_type": "structure",
@@ -9659,6 +9686,33 @@ SHAPE_DAG = {
9659
9686
  "member_type": "structure",
9660
9687
  "type": "list",
9661
9688
  },
9689
+ "MetricQuery": {
9690
+ "members": [
9691
+ {"name": "MetricName", "shape": "MetricName", "type": "string"},
9692
+ {"name": "ResourceArn", "shape": "SageMakerResourceArn", "type": "string"},
9693
+ {"name": "MetricStat", "shape": "MetricStatistic", "type": "string"},
9694
+ {"name": "Period", "shape": "Period", "type": "string"},
9695
+ {"name": "XAxisType", "shape": "XAxisType", "type": "string"},
9696
+ {"name": "Start", "shape": "Long", "type": "long"},
9697
+ {"name": "End", "shape": "Long", "type": "long"},
9698
+ ],
9699
+ "type": "structure",
9700
+ },
9701
+ "MetricQueryList": {"member_shape": "MetricQuery", "member_type": "structure", "type": "list"},
9702
+ "MetricQueryResult": {
9703
+ "members": [
9704
+ {"name": "Status", "shape": "MetricQueryResultStatus", "type": "string"},
9705
+ {"name": "Message", "shape": "Message", "type": "string"},
9706
+ {"name": "XAxisValues", "shape": "XAxisValues", "type": "list"},
9707
+ {"name": "MetricValues", "shape": "MetricValues", "type": "list"},
9708
+ ],
9709
+ "type": "structure",
9710
+ },
9711
+ "MetricQueryResultList": {
9712
+ "member_shape": "MetricQueryResult",
9713
+ "member_type": "structure",
9714
+ "type": "list",
9715
+ },
9662
9716
  "MetricSpecification": {
9663
9717
  "members": [
9664
9718
  {"name": "Predefined", "shape": "PredefinedMetricSpecification", "type": "structure"},
@@ -9666,6 +9720,7 @@ SHAPE_DAG = {
9666
9720
  ],
9667
9721
  "type": "structure",
9668
9722
  },
9723
+ "MetricValues": {"member_shape": "Double", "member_type": "double", "type": "list"},
9669
9724
  "MetricsSource": {
9670
9725
  "members": [
9671
9726
  {"name": "ContentType", "shape": "ContentType", "type": "string"},
@@ -12459,6 +12514,7 @@ SHAPE_DAG = {
12459
12514
  {"name": "CompressionType", "shape": "ModelCompressionType", "type": "string"},
12460
12515
  {"name": "ModelAccessConfig", "shape": "ModelAccessConfig", "type": "structure"},
12461
12516
  {"name": "HubAccessConfig", "shape": "InferenceHubAccessConfig", "type": "structure"},
12517
+ {"name": "ManifestS3Uri", "shape": "S3ModelUri", "type": "string"},
12462
12518
  ],
12463
12519
  "type": "structure",
12464
12520
  },
@@ -13096,6 +13152,12 @@ SHAPE_DAG = {
13096
13152
  "members": [
13097
13153
  {"name": "HiddenMlTools", "shape": "HiddenMlToolsList", "type": "list"},
13098
13154
  {"name": "HiddenAppTypes", "shape": "HiddenAppTypesList", "type": "list"},
13155
+ {"name": "HiddenInstanceTypes", "shape": "HiddenInstanceTypesList", "type": "list"},
13156
+ {
13157
+ "name": "HiddenSageMakerImageVersionAliases",
13158
+ "shape": "HiddenSageMakerImageVersionAliasesList",
13159
+ "type": "list",
13160
+ },
13099
13161
  ],
13100
13162
  "type": "structure",
13101
13163
  },
@@ -14662,6 +14724,11 @@ SHAPE_DAG = {
14662
14724
  "members": [{"name": "Dimension", "shape": "Dimension", "type": "integer"}],
14663
14725
  "type": "structure",
14664
14726
  },
14727
+ "VersionAliasesList": {
14728
+ "member_shape": "ImageVersionAliasPattern",
14729
+ "member_type": "string",
14730
+ "type": "list",
14731
+ },
14665
14732
  "Vertex": {
14666
14733
  "members": [
14667
14734
  {"name": "Arn", "shape": "AssociationEntityArn", "type": "string"},
@@ -14796,4 +14863,5 @@ SHAPE_DAG = {
14796
14863
  "type": "structure",
14797
14864
  },
14798
14865
  "Workteams": {"member_shape": "Workteam", "member_type": "structure", "type": "list"},
14866
+ "XAxisValues": {"member_shape": "Long", "member_type": "long", "type": "list"},
14799
14867
  }
@@ -469,6 +469,7 @@ SAGEMAKER_PYTHON_SDK_CONFIG_SCHEMA = {
469
469
  "s3_data_source": {
470
470
  "s3_uri": {"type": "string"},
471
471
  "s3_data_type": {"type": "string"},
472
+ "manifest_s3_uri": {"type": "string"},
472
473
  }
473
474
  }
474
475
  },
@@ -16518,6 +16518,7 @@ class Model(Base):
16518
16518
  "s3_data_source": {
16519
16519
  "s3_uri": {"type": "string"},
16520
16520
  "s3_data_type": {"type": "string"},
16521
+ "manifest_s3_uri": {"type": "string"},
16521
16522
  }
16522
16523
  }
16523
16524
  },
@@ -27953,6 +27954,55 @@ class TrialComponent(Base):
27953
27954
  response = client.batch_put_metrics(**operation_input_args)
27954
27955
  logger.debug(f"Response: {response}")
27955
27956
 
27957
+ @classmethod
27958
+ @Base.add_validate_call
27959
+ def batch_get_metrics(
27960
+ cls,
27961
+ metric_queries: List[MetricQuery],
27962
+ session: Optional[Session] = None,
27963
+ region: Optional[str] = None,
27964
+ ) -> Optional[BatchGetMetricsResponse]:
27965
+ """
27966
+ Used to retrieve training metrics from SageMaker.
27967
+
27968
+ Parameters:
27969
+ metric_queries: Queries made to retrieve training metrics from SageMaker.
27970
+ session: Boto3 session.
27971
+ region: Region name.
27972
+
27973
+ Returns:
27974
+ BatchGetMetricsResponse
27975
+
27976
+ Raises:
27977
+ botocore.exceptions.ClientError: This exception is raised for AWS service related errors.
27978
+ The error message and error code can be parsed from the exception as follows:
27979
+ ```
27980
+ try:
27981
+ # AWS service call here
27982
+ except botocore.exceptions.ClientError as e:
27983
+ error_message = e.response['Error']['Message']
27984
+ error_code = e.response['Error']['Code']
27985
+ ```
27986
+ """
27987
+
27988
+ operation_input_args = {
27989
+ "MetricQueries": metric_queries,
27990
+ }
27991
+ # serialize the input request
27992
+ operation_input_args = serialize(operation_input_args)
27993
+ logger.debug(f"Serialized input request: {operation_input_args}")
27994
+
27995
+ client = Base.get_sagemaker_client(
27996
+ session=session, region_name=region, service_name="sagemaker-metrics"
27997
+ )
27998
+
27999
+ logger.debug(f"Calling batch_get_metrics API")
28000
+ response = client.batch_get_metrics(**operation_input_args)
28001
+ logger.debug(f"Response: {response}")
28002
+
28003
+ transformed_response = transform(response, "BatchGetMetricsResponse")
28004
+ return BatchGetMetricsResponse(**transformed_response)
28005
+
27956
28006
 
27957
28007
  class UserProfile(Base):
27958
28008
  """
@@ -362,6 +362,62 @@ class ResourceNotFound(Base):
362
362
  message: Optional[str] = Unassigned()
363
363
 
364
364
 
365
+ class MetricQuery(Base):
366
+ """
367
+ MetricQuery
368
+ Specifies a query to retrieve training metrics from SageMaker.
369
+
370
+ Attributes
371
+ ----------------------
372
+ metric_name: The name of the metric to retrieve.
373
+ resource_arn: The ARN of the SageMaker resource to retrieve metrics for.
374
+ metric_stat: The metrics stat type of metrics to retrieve.
375
+ period: The time period of metrics to retrieve.
376
+ x_axis_type: The x-axis type of metrics to retrieve.
377
+ start: The start time of metrics to retrieve.
378
+ end: The end time of metrics to retrieve.
379
+ """
380
+
381
+ metric_name: str
382
+ resource_arn: str
383
+ metric_stat: str
384
+ period: str
385
+ x_axis_type: str
386
+ start: Optional[int] = Unassigned()
387
+ end: Optional[int] = Unassigned()
388
+
389
+
390
+ class MetricQueryResult(Base):
391
+ """
392
+ MetricQueryResult
393
+ The result of a query to retrieve training metrics from SageMaker.
394
+
395
+ Attributes
396
+ ----------------------
397
+ status: The status of the metric query.
398
+ message: A message describing the status of the metric query.
399
+ x_axis_values: The values for the x-axis of the metrics.
400
+ metric_values: The metric values retrieved by the query.
401
+ """
402
+
403
+ status: str
404
+ x_axis_values: List[int]
405
+ metric_values: List[float]
406
+ message: Optional[str] = Unassigned()
407
+
408
+
409
+ class BatchGetMetricsResponse(Base):
410
+ """
411
+ BatchGetMetricsResponse
412
+
413
+ Attributes
414
+ ----------------------
415
+ metric_query_results: The results of a query to retrieve training metrics from SageMaker.
416
+ """
417
+
418
+ metric_query_results: Optional[List[MetricQueryResult]] = Unassigned()
419
+
420
+
365
421
  class BatchPutMetricsError(Base):
366
422
  """
367
423
  BatchPutMetricsError
@@ -491,6 +547,7 @@ class S3ModelDataSource(Base):
491
547
  compression_type: Specifies how the ML model data is prepared. If you choose Gzip and choose S3Object as the value of S3DataType, S3Uri identifies an object that is a gzip-compressed TAR archive. SageMaker will attempt to decompress and untar the object during model deployment. If you choose None and chooose S3Object as the value of S3DataType, S3Uri identifies an object that represents an uncompressed ML model to deploy. If you choose None and choose S3Prefix as the value of S3DataType, S3Uri identifies a key name prefix, under which all objects represents the uncompressed ML model to deploy. If you choose None, then SageMaker will follow rules below when creating model data files under /opt/ml/model directory for use by your inference code: If you choose S3Object as the value of S3DataType, then SageMaker will split the key of the S3 object referenced by S3Uri by slash (/), and use the last part as the filename of the file holding the content of the S3 object. If you choose S3Prefix as the value of S3DataType, then for each S3 object under the key name pefix referenced by S3Uri, SageMaker will trim its key by the prefix, and use the remainder as the path (relative to /opt/ml/model) of the file holding the content of the S3 object. SageMaker will split the remainder by slash (/), using intermediate parts as directory names and the last part as filename of the file holding the content of the S3 object. Do not use any of the following as file names or directory names: An empty or blank string A string which contains null bytes A string longer than 255 bytes A single dot (.) A double dot (..) Ambiguous file names will result in model deployment failure. For example, if your uncompressed ML model consists of two S3 objects s3://mybucket/model/weights and s3://mybucket/model/weights/part1 and you specify s3://mybucket/model/ as the value of S3Uri and S3Prefix as the value of S3DataType, then it will result in name clash between /opt/ml/model/weights (a regular file) and /opt/ml/model/weights/ (a directory). Do not organize the model artifacts in S3 console using folders. When you create a folder in S3 console, S3 creates a 0-byte object with a key set to the folder name you provide. They key of the 0-byte object ends with a slash (/) which violates SageMaker restrictions on model artifact file names, leading to model deployment failure.
492
548
  model_access_config: Specifies the access configuration file for the ML model. You can explicitly accept the model end-user license agreement (EULA) within the ModelAccessConfig. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
493
549
  hub_access_config: Configuration information for hub access.
550
+ manifest_s3_uri: The Amazon S3 URI of the manifest file. The manifest file is a CSV file that stores the artifact locations.
494
551
  """
495
552
 
496
553
  s3_uri: str
@@ -498,6 +555,7 @@ class S3ModelDataSource(Base):
498
555
  compression_type: str
499
556
  model_access_config: Optional[ModelAccessConfig] = Unassigned()
500
557
  hub_access_config: Optional[InferenceHubAccessConfig] = Unassigned()
558
+ manifest_s3_uri: Optional[str] = Unassigned()
501
559
 
502
560
 
503
561
  class ModelDataSource(Base):
@@ -4258,6 +4316,21 @@ class CustomFileSystemConfig(Base):
4258
4316
  efs_file_system_config: Optional[EFSFileSystemConfig] = Unassigned()
4259
4317
 
4260
4318
 
4319
+ class HiddenSageMakerImage(Base):
4320
+ """
4321
+ HiddenSageMakerImage
4322
+ The SageMaker images that are hidden from the Studio user interface. You must specify the SageMaker image name and version aliases.
4323
+
4324
+ Attributes
4325
+ ----------------------
4326
+ sage_maker_image_name: The SageMaker image name that you are hiding from the Studio user interface.
4327
+ version_aliases: The version aliases you are hiding from the Studio user interface.
4328
+ """
4329
+
4330
+ sage_maker_image_name: Optional[str] = Unassigned()
4331
+ version_aliases: Optional[List[str]] = Unassigned()
4332
+
4333
+
4261
4334
  class StudioWebPortalSettings(Base):
4262
4335
  """
4263
4336
  StudioWebPortalSettings
@@ -4267,10 +4340,14 @@ class StudioWebPortalSettings(Base):
4267
4340
  ----------------------
4268
4341
  hidden_ml_tools: The machine learning tools that are hidden from the Studio left navigation pane.
4269
4342
  hidden_app_types: The Applications supported in Studio that are hidden from the Studio left navigation pane.
4343
+ hidden_instance_types: The instance types you are hiding from the Studio user interface.
4344
+ hidden_sage_maker_image_version_aliases: The version aliases you are hiding from the Studio user interface.
4270
4345
  """
4271
4346
 
4272
4347
  hidden_ml_tools: Optional[List[str]] = Unassigned()
4273
4348
  hidden_app_types: Optional[List[str]] = Unassigned()
4349
+ hidden_instance_types: Optional[List[str]] = Unassigned()
4350
+ hidden_sage_maker_image_version_aliases: Optional[List[HiddenSageMakerImage]] = Unassigned()
4274
4351
 
4275
4352
 
4276
4353
  class UserSettings(Base):
@@ -5803,15 +5880,15 @@ class HumanTaskConfig(Base):
5803
5880
 
5804
5881
  workteam_arn: str
5805
5882
  ui_config: UiConfig
5806
- pre_human_task_lambda_arn: str
5807
5883
  task_title: str
5808
5884
  task_description: str
5809
5885
  number_of_human_workers_per_data_object: int
5810
5886
  task_time_limit_in_seconds: int
5811
- annotation_consolidation_config: AnnotationConsolidationConfig
5887
+ pre_human_task_lambda_arn: Optional[str] = Unassigned()
5812
5888
  task_keywords: Optional[List[str]] = Unassigned()
5813
5889
  task_availability_lifetime_in_seconds: Optional[int] = Unassigned()
5814
5890
  max_concurrent_task_count: Optional[int] = Unassigned()
5891
+ annotation_consolidation_config: Optional[AnnotationConsolidationConfig] = Unassigned()
5815
5892
  public_workforce_task_price: Optional[PublicWorkforceTaskPrice] = Unassigned()
5816
5893
 
5817
5894
 
@@ -9933,7 +10010,7 @@ class LabelingJobSummary(Base):
9933
10010
  labeling_job_status: str
9934
10011
  label_counters: LabelCounters
9935
10012
  workteam_arn: str
9936
- pre_human_task_lambda_arn: str
10013
+ pre_human_task_lambda_arn: Optional[str] = Unassigned()
9937
10014
  annotation_consolidation_lambda_arn: Optional[str] = Unassigned()
9938
10015
  failure_reason: Optional[str] = Unassigned()
9939
10016
  labeling_job_output: Optional[LabelingJobOutput] = Unassigned()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sagemaker-core
3
- Version: 1.0.6
3
+ Version: 1.0.8
4
4
  Summary: An python package for sagemaker core functionalities
5
5
  Author-email: AWS <sagemaker-interests@amazon.com>
6
6
  Project-URL: Repository, https://github.com/aws/sagemaker-core.git
@@ -3,18 +3,18 @@ sagemaker_core/_version.py,sha256=t-XEKT8_pvKkl5z_UrfcIU256c_NxaI16qGWMuNVpbM,32
3
3
  sagemaker_core/helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  sagemaker_core/helper/session_helper.py,sha256=GO1UJgpN1L9a25nYlVb-KWk4KvmFzVkLqFMqw-VaI4c,33126
5
5
  sagemaker_core/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- sagemaker_core/main/config_schema.py,sha256=IDvL1YuMOwVg4nb0D4ysU51tc1UjlQASyz1QZoncs7I,56907
6
+ sagemaker_core/main/config_schema.py,sha256=TeGoTobT4yotEVyfguLF0IdKYlOymsDZ45ySxXiCDuw,56998
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
- sagemaker_core/main/resources.py,sha256=S4wuM705rkah3cFO-kfWAXPgYq7SI3PG2Qh6ZHtfTfk,1314805
10
- sagemaker_core/main/shapes.py,sha256=kuefQBAgOogQynQikMq-6RxNezaVXE3ChwJedvVMAFw,693437
9
+ sagemaker_core/main/resources.py,sha256=VjjmTLzPcjjg3c8-1g9Fv88Gpwimd9KuNq02378B6cE,1316658
10
+ sagemaker_core/main/shapes.py,sha256=Groaj8psouJwQpRljmZIDeRM6fyU6p2J3wgjzcvQ_5k,696205
11
11
  sagemaker_core/main/user_agent.py,sha256=4sZybDXkzRoZnOnVDQ8p8zFTfiRJdsH7amDWInVQ4xU,2708
12
12
  sagemaker_core/main/utils.py,sha256=lXkJyiCow5uf32l0EmkimB0RKVk2BS7OM2fYoLsOfD4,18346
13
13
  sagemaker_core/main/code_injection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  sagemaker_core/main/code_injection/base.py,sha256=11_Jif0nOzfbLGlXaacKf-wcizzfS64U0OSZGoVffFU,1733
15
15
  sagemaker_core/main/code_injection/codec.py,sha256=2DjmeD2uND307UqDefvVEpE0rZ8yfFU3Bi3TvQCQveI,7658
16
16
  sagemaker_core/main/code_injection/constants.py,sha256=2ICExGge8vAWx7lSTW0JGh-bH1korkvpOpDu5M63eI4,980
17
- sagemaker_core/main/code_injection/shape_dag.py,sha256=iIkfDlMpNdzeLY958ZB3VTD55BJC1sid3qry-YOG-rM,655019
17
+ sagemaker_core/main/code_injection/shape_dag.py,sha256=0OoQzH_r_TAYR2-KUKGQnGMD4U9Cb-NRMxc_SORIOdw,657895
18
18
  sagemaker_core/resources/__init__.py,sha256=EAYTFMN-nPjnPjjBbhIUeaL67FLKNPd7qbcbl9VIrws,31
19
19
  sagemaker_core/shapes/__init__.py,sha256=RnbIu9eTxKt-DNsOFJabrWIgrrtS9_SdAozP9JBl_ic,28
20
20
  sagemaker_core/tools/__init__.py,sha256=xX79JImxCVzrWMnjgntLCve2G5I-R4pRar5s20kT9Rs,56
@@ -27,8 +27,8 @@ sagemaker_core/tools/resources_extractor.py,sha256=hN61ehZbPnhFW-2FIVDi7NsEz4rLv
27
27
  sagemaker_core/tools/shapes_codegen.py,sha256=_ve959bwH8usZ6dPlpXxi2on9t0hLpcmhRWnaWHCWMQ,11745
28
28
  sagemaker_core/tools/shapes_extractor.py,sha256=4KjgDmhlPM4G1f1NeYbORKlXs1s7Q_sm_NK31S_ROQ0,11950
29
29
  sagemaker_core/tools/templates.py,sha256=nze_A01EpegYUwoR_gRv2qBNKNFruBY8L3RiIX5lz3M,22458
30
- sagemaker_core-1.0.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
31
- sagemaker_core-1.0.6.dist-info/METADATA,sha256=yoth9VivBfunXlVEWY3wT575kCh-QM4zZn44LjSn3UQ,4877
32
- sagemaker_core-1.0.6.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
33
- sagemaker_core-1.0.6.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
34
- sagemaker_core-1.0.6.dist-info/RECORD,,
30
+ sagemaker_core-1.0.8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
31
+ sagemaker_core-1.0.8.dist-info/METADATA,sha256=MvlRWwl72_MVfsHjlrirz1RooJ1vJBuyCrZe_HDJr9s,4877
32
+ sagemaker_core-1.0.8.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
33
+ sagemaker_core-1.0.8.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
34
+ sagemaker_core-1.0.8.dist-info/RECORD,,