aws-sdk-sagemaker 1.207.0 → 1.208.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04546f4a01e3f71103b4bd895c6af9606228edf6db98c8cbf0ac9da9552e803f
4
- data.tar.gz: 51e82fdade39ee3b2c11c370d4118d8c6ad505219d6653a172b430a1e4e0b2fa
3
+ metadata.gz: cb2552eb47b69d7b8a632de6766c6a445fa641364aec6d45685cdefdbfae25a4
4
+ data.tar.gz: 27f1a9a26b656415c14ecbb3f4560ad5b7932ef082ae87dac5243cc089b4167b
5
5
  SHA512:
6
- metadata.gz: 99a6d5ff454c72b82077875181a1cb24a653afaf0f679f05f94f149cac44d482d73f67880a9675b16d9e13693a704429af74022adf84d9cf1d4ba40ff04a9877
7
- data.tar.gz: b069c081e80fd868eea0b18fc37e30af3f8684f1c15f8aadf1545241482dae1b65831acf48078b65c0ecffb16fcf79546254ae68d707b4e4e51c97bbc2a12e9e
6
+ metadata.gz: 96ce0ec15777630d70829b5f4581ed4aee128300970f1c5da2b053852995472c1d01f681ef980bd9ecc0ac891b1b7212d29f236d88ba468fd3c0ae8436fa7337
7
+ data.tar.gz: 7acb896667b2e410ec3121f63feb9af908587081ecce4d59b280abf1b6509b7c72ffb3a996a86d73b3e27c6083ba3fc8abcc76700c20f1ce2055c8ef214de0d8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.208.0 (2023-09-05)
5
+ ------------------
6
+
7
+ * Feature - SageMaker Neo now supports data input shape derivation for Pytorch 2.0 and XGBoost compilation job for cloud instance targets. You can skip DataInputConfig field during compilation job creation. You can also access derived information from model in DescribeCompilationJob response.
8
+
4
9
  1.207.0 (2023-08-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.207.0
1
+ 1.208.0
@@ -1808,7 +1808,7 @@ module Aws::SageMaker
1808
1808
  # model_package_version_arn: "ModelPackageArn",
1809
1809
  # input_config: {
1810
1810
  # s3_uri: "S3Uri", # required
1811
- # data_input_config: "DataInputConfig", # required
1811
+ # data_input_config: "DataInputConfig",
1812
1812
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
1813
1813
  # framework_version: "FrameworkVersion",
1814
1814
  # },
@@ -10502,6 +10502,7 @@ module Aws::SageMaker
10502
10502
  # * {Types::DescribeCompilationJobResponse#input_config #input_config} => Types::InputConfig
10503
10503
  # * {Types::DescribeCompilationJobResponse#output_config #output_config} => Types::OutputConfig
10504
10504
  # * {Types::DescribeCompilationJobResponse#vpc_config #vpc_config} => Types::NeoVpcConfig
10505
+ # * {Types::DescribeCompilationJobResponse#derived_information #derived_information} => Types::DerivedInformation
10505
10506
  #
10506
10507
  # @example Request syntax with placeholder values
10507
10508
  #
@@ -10541,6 +10542,7 @@ module Aws::SageMaker
10541
10542
  # resp.vpc_config.security_group_ids[0] #=> String
10542
10543
  # resp.vpc_config.subnets #=> Array
10543
10544
  # resp.vpc_config.subnets[0] #=> String
10545
+ # resp.derived_information.derived_data_input_config #=> String
10544
10546
  #
10545
10547
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJob AWS API Documentation
10546
10548
  #
@@ -24130,7 +24132,7 @@ module Aws::SageMaker
24130
24132
  params: params,
24131
24133
  config: config)
24132
24134
  context[:gem_name] = 'aws-sdk-sagemaker'
24133
- context[:gem_version] = '1.207.0'
24135
+ context[:gem_version] = '1.208.0'
24134
24136
  Seahorse::Client::Request.new(handlers, context)
24135
24137
  end
24136
24138
 
@@ -506,6 +506,7 @@ module Aws::SageMaker
506
506
  DeploymentStageStatusSummary = Shapes::StructureShape.new(name: 'DeploymentStageStatusSummary')
507
507
  DeploymentStages = Shapes::ListShape.new(name: 'DeploymentStages')
508
508
  DeregisterDevicesRequest = Shapes::StructureShape.new(name: 'DeregisterDevicesRequest')
509
+ DerivedInformation = Shapes::StructureShape.new(name: 'DerivedInformation')
509
510
  DescribeActionRequest = Shapes::StructureShape.new(name: 'DescribeActionRequest')
510
511
  DescribeActionResponse = Shapes::StructureShape.new(name: 'DescribeActionResponse')
511
512
  DescribeAlgorithmInput = Shapes::StructureShape.new(name: 'DescribeAlgorithmInput')
@@ -3741,6 +3742,9 @@ module Aws::SageMaker
3741
3742
  DeregisterDevicesRequest.add_member(:device_names, Shapes::ShapeRef.new(shape: DeviceNames, required: true, location_name: "DeviceNames"))
3742
3743
  DeregisterDevicesRequest.struct_class = Types::DeregisterDevicesRequest
3743
3744
 
3745
+ DerivedInformation.add_member(:derived_data_input_config, Shapes::ShapeRef.new(shape: DataInputConfig, location_name: "DerivedDataInputConfig"))
3746
+ DerivedInformation.struct_class = Types::DerivedInformation
3747
+
3744
3748
  DescribeActionRequest.add_member(:action_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, required: true, location_name: "ActionName"))
3745
3749
  DescribeActionRequest.struct_class = Types::DescribeActionRequest
3746
3750
 
@@ -3905,6 +3909,7 @@ module Aws::SageMaker
3905
3909
  DescribeCompilationJobResponse.add_member(:input_config, Shapes::ShapeRef.new(shape: InputConfig, required: true, location_name: "InputConfig"))
3906
3910
  DescribeCompilationJobResponse.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, required: true, location_name: "OutputConfig"))
3907
3911
  DescribeCompilationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: NeoVpcConfig, location_name: "VpcConfig"))
3912
+ DescribeCompilationJobResponse.add_member(:derived_information, Shapes::ShapeRef.new(shape: DerivedInformation, location_name: "DerivedInformation"))
3908
3913
  DescribeCompilationJobResponse.struct_class = Types::DescribeCompilationJobResponse
3909
3914
 
3910
3915
  DescribeContextRequest.add_member(:context_name, Shapes::ShapeRef.new(shape: ExperimentEntityNameOrArn, required: true, location_name: "ContextName"))
@@ -5654,7 +5659,7 @@ module Aws::SageMaker
5654
5659
  InferenceSpecification.struct_class = Types::InferenceSpecification
5655
5660
 
5656
5661
  InputConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
5657
- InputConfig.add_member(:data_input_config, Shapes::ShapeRef.new(shape: DataInputConfig, required: true, location_name: "DataInputConfig"))
5662
+ InputConfig.add_member(:data_input_config, Shapes::ShapeRef.new(shape: DataInputConfig, location_name: "DataInputConfig"))
5658
5663
  InputConfig.add_member(:framework, Shapes::ShapeRef.new(shape: Framework, required: true, location_name: "Framework"))
5659
5664
  InputConfig.add_member(:framework_version, Shapes::ShapeRef.new(shape: FrameworkVersion, location_name: "FrameworkVersion"))
5660
5665
  InputConfig.struct_class = Types::InputConfig
@@ -10365,6 +10365,23 @@ module Aws::SageMaker
10365
10365
  include Aws::Structure
10366
10366
  end
10367
10367
 
10368
+ # Information that SageMaker Neo automatically derived about the model.
10369
+ #
10370
+ # @!attribute [rw] derived_data_input_config
10371
+ # The data input configuration that SageMaker Neo automatically
10372
+ # derived for the model. When SageMaker Neo derives this information,
10373
+ # you don't need to specify the data input configuration when you
10374
+ # create a compilation job.
10375
+ # @return [String]
10376
+ #
10377
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DerivedInformation AWS API Documentation
10378
+ #
10379
+ class DerivedInformation < Struct.new(
10380
+ :derived_data_input_config)
10381
+ SENSITIVE = []
10382
+ include Aws::Structure
10383
+ end
10384
+
10368
10385
  # @!attribute [rw] action_name
10369
10386
  # The name of the action to describe.
10370
10387
  # @return [String]
@@ -11188,6 +11205,11 @@ module Aws::SageMaker
11188
11205
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html
11189
11206
  # @return [Types::NeoVpcConfig]
11190
11207
  #
11208
+ # @!attribute [rw] derived_information
11209
+ # Information that SageMaker Neo automatically derived about the
11210
+ # model.
11211
+ # @return [Types::DerivedInformation]
11212
+ #
11191
11213
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJobResponse AWS API Documentation
11192
11214
  #
11193
11215
  class DescribeCompilationJobResponse < Struct.new(
@@ -11207,7 +11229,8 @@ module Aws::SageMaker
11207
11229
  :role_arn,
11208
11230
  :input_config,
11209
11231
  :output_config,
11210
- :vpc_config)
11232
+ :vpc_config,
11233
+ :derived_information)
11211
11234
  SENSITIVE = []
11212
11235
  include Aws::Structure
11213
11236
  end
@@ -29056,8 +29079,8 @@ module Aws::SageMaker
29056
29079
  # The model latency threshold.
29057
29080
  #
29058
29081
  # @!attribute [rw] percentile
29059
- # The model latency percentile threshold. For custom load tests,
29060
- # specify the value as `P95`.
29082
+ # The model latency percentile threshold. Acceptable values are `P95`
29083
+ # and `P99`. For custom load tests, specify the value as `P95`.
29061
29084
  # @return [String]
29062
29085
  #
29063
29086
  # @!attribute [rw] value_in_milliseconds
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.207.0'
56
+ GEM_VERSION = '1.208.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.207.0
4
+ version: 1.208.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-30 00:00:00.000000000 Z
11
+ date: 2023-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core