aws-sdk-sagemaker 1.117.0 → 1.120.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: 077c341427083e467c48871d576dedfa58218db37da2cf51b2edc1dbc47e077a
4
- data.tar.gz: fa9c0cf4a4b472415e831266a636689db3311ce0dd28926f02489bb3dd159135
3
+ metadata.gz: 901f32502040852d84d056b37945c0e41521fa02d700375b9aa720b5a2126858
4
+ data.tar.gz: ccd7293b56afcfc8f07dac325c40df4e3b7779e7717068b1750c1ec4ffc6beaa
5
5
  SHA512:
6
- metadata.gz: 64ead02ca23b2ac48122de6caa102031fb26a43faaf979abb284964ea87c52486965e1deadc5fd798a4ea2d6a21bf116f69dffcee4e5e7f7115546f26d2bc9ef
7
- data.tar.gz: 3934e55e51fc511947de92086593923ad22417c4ef1b56b9d442553e222661545b08ee567ddf13bd6e9f07b8051ec5ea44f6c11d778834cc52b4af8e23296914
6
+ metadata.gz: 076d232667afd094c0e85e11f812c3e9f5bd2b7e49158347b9c850b16f1aff6ac7e6515d90bb2efdd85d27717a67df78c3deff652444dbac46b3b6b5e3214115
7
+ data.tar.gz: e9e8d5df3b7afa72a32236aadd0b125dd27fa38e20ada9068d38fd95e14e7a2fc0cff243ec29d236070f8cd694c6e8e23004a970af7c1cd0bdbc8a44248b5515
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.119.0 (2022-02-08)
10
+ ------------------
11
+
12
+ * Feature - Autopilot now generates an additional report with information on the performance of the best model, such as a Confusion matrix and Area under the receiver operating characteristic (AUC-ROC). The path to the report can be found in CandidateArtifactLocations.
13
+
14
+ 1.118.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.117.0 (2022-01-28)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.117.0
1
+ 1.120.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::SageMaker
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
80
84
 
@@ -8266,12 +8270,13 @@ module Aws::SageMaker
8266
8270
  # resp.best_candidate.last_modified_time #=> Time
8267
8271
  # resp.best_candidate.failure_reason #=> String
8268
8272
  # resp.best_candidate.candidate_properties.candidate_artifact_locations.explainability #=> String
8273
+ # resp.best_candidate.candidate_properties.candidate_artifact_locations.model_insights #=> String
8269
8274
  # resp.best_candidate.candidate_properties.candidate_metrics #=> Array
8270
8275
  # resp.best_candidate.candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
8271
8276
  # resp.best_candidate.candidate_properties.candidate_metrics[0].value #=> Float
8272
8277
  # resp.best_candidate.candidate_properties.candidate_metrics[0].set #=> String, one of "Train", "Validation", "Test"
8273
8278
  # resp.auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
8274
- # resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError"
8279
+ # resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError"
8275
8280
  # resp.generate_candidate_definitions_only #=> Boolean
8276
8281
  # resp.auto_ml_job_artifacts.candidate_definition_notebook_location #=> String
8277
8282
  # resp.auto_ml_job_artifacts.data_exploration_notebook_location #=> String
@@ -12300,7 +12305,7 @@ module Aws::SageMaker
12300
12305
  # resp.auto_ml_job_summaries[0].auto_ml_job_name #=> String
12301
12306
  # resp.auto_ml_job_summaries[0].auto_ml_job_arn #=> String
12302
12307
  # resp.auto_ml_job_summaries[0].auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
12303
- # resp.auto_ml_job_summaries[0].auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError"
12308
+ # resp.auto_ml_job_summaries[0].auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError"
12304
12309
  # resp.auto_ml_job_summaries[0].creation_time #=> Time
12305
12310
  # resp.auto_ml_job_summaries[0].end_time #=> Time
12306
12311
  # resp.auto_ml_job_summaries[0].last_modified_time #=> Time
@@ -12385,6 +12390,7 @@ module Aws::SageMaker
12385
12390
  # resp.candidates[0].last_modified_time #=> Time
12386
12391
  # resp.candidates[0].failure_reason #=> String
12387
12392
  # resp.candidates[0].candidate_properties.candidate_artifact_locations.explainability #=> String
12393
+ # resp.candidates[0].candidate_properties.candidate_artifact_locations.model_insights #=> String
12388
12394
  # resp.candidates[0].candidate_properties.candidate_metrics #=> Array
12389
12395
  # resp.candidates[0].candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
12390
12396
  # resp.candidates[0].candidate_properties.candidate_metrics[0].value #=> Float
@@ -19446,7 +19452,7 @@ module Aws::SageMaker
19446
19452
  params: params,
19447
19453
  config: config)
19448
19454
  context[:gem_name] = 'aws-sdk-sagemaker'
19449
- context[:gem_version] = '1.117.0'
19455
+ context[:gem_version] = '1.120.0'
19450
19456
  Seahorse::Client::Request.new(handlers, context)
19451
19457
  end
19452
19458
 
@@ -989,6 +989,7 @@ module Aws::SageMaker
989
989
  ModelExplainabilityBaselineConfig = Shapes::StructureShape.new(name: 'ModelExplainabilityBaselineConfig')
990
990
  ModelExplainabilityJobInput = Shapes::StructureShape.new(name: 'ModelExplainabilityJobInput')
991
991
  ModelInput = Shapes::StructureShape.new(name: 'ModelInput')
992
+ ModelInsightsLocation = Shapes::StringShape.new(name: 'ModelInsightsLocation')
992
993
  ModelLatencyThreshold = Shapes::StructureShape.new(name: 'ModelLatencyThreshold')
993
994
  ModelLatencyThresholds = Shapes::ListShape.new(name: 'ModelLatencyThresholds')
994
995
  ModelMetadataFilter = Shapes::StructureShape.new(name: 'ModelMetadataFilter')
@@ -1937,6 +1938,7 @@ module Aws::SageMaker
1937
1938
  CallbackStepMetadata.struct_class = Types::CallbackStepMetadata
1938
1939
 
1939
1940
  CandidateArtifactLocations.add_member(:explainability, Shapes::ShapeRef.new(shape: ExplainabilityLocation, required: true, location_name: "Explainability"))
1941
+ CandidateArtifactLocations.add_member(:model_insights, Shapes::ShapeRef.new(shape: ModelInsightsLocation, location_name: "ModelInsights"))
1940
1942
  CandidateArtifactLocations.struct_class = Types::CandidateArtifactLocations
1941
1943
 
1942
1944
  CandidateProperties.add_member(:candidate_artifact_locations, Shapes::ShapeRef.new(shape: CandidateArtifactLocations, location_name: "CandidateArtifactLocations"))
@@ -2769,10 +2769,16 @@ module Aws::SageMaker
2769
2769
  # the AutoML candidate.
2770
2770
  # @return [String]
2771
2771
  #
2772
+ # @!attribute [rw] model_insights
2773
+ # The Amazon S3 prefix to the model insight artifacts generated for
2774
+ # the AutoML candidate.
2775
+ # @return [String]
2776
+ #
2772
2777
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CandidateArtifactLocations AWS API Documentation
2773
2778
  #
2774
2779
  class CandidateArtifactLocations < Struct.new(
2775
- :explainability)
2780
+ :explainability,
2781
+ :model_insights)
2776
2782
  SENSITIVE = []
2777
2783
  include Aws::Structure
2778
2784
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.117.0'
52
+ GEM_VERSION = '1.120.0'
53
53
 
54
54
  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.117.0
4
+ version: 1.120.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: 2022-01-28 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement