aws-sdk-sagemaker 1.118.0 → 1.119.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +5 -3
- data/lib/aws-sdk-sagemaker/client_api.rb +2 -0
- data/lib/aws-sdk-sagemaker/types.rb +7 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 176a9dfadf031ce948c35cd66ef70750f7425a07ab2c316e8345d508c8f0bcbe
|
|
4
|
+
data.tar.gz: 5c1c027948c5e4b3cf1c85bf3edb195a74bdffa40e7b751d9d615428d06c8fc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e034e17519576c2ff0d3e67b54c27e8a34444876dbf55206ea04b574e08f3fc93fe765dc694b596fbd783f9ab554d25a73ba75d7bf97faa350364b6570015c90
|
|
7
|
+
data.tar.gz: 98f6ae47f3e6927f0a476d76aab065eb4553e530ba670b154347819220db099f52859f5b937acc1976f3b6e2dc76e4e8f5f216cbce5fe13ba8e22372b73056d9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.119.0 (2022-02-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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.
|
|
8
|
+
|
|
4
9
|
1.118.0 (2022-02-03)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.119.0
|
|
@@ -8268,12 +8268,13 @@ module Aws::SageMaker
|
|
|
8268
8268
|
# resp.best_candidate.last_modified_time #=> Time
|
|
8269
8269
|
# resp.best_candidate.failure_reason #=> String
|
|
8270
8270
|
# resp.best_candidate.candidate_properties.candidate_artifact_locations.explainability #=> String
|
|
8271
|
+
# resp.best_candidate.candidate_properties.candidate_artifact_locations.model_insights #=> String
|
|
8271
8272
|
# resp.best_candidate.candidate_properties.candidate_metrics #=> Array
|
|
8272
8273
|
# resp.best_candidate.candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
|
8273
8274
|
# resp.best_candidate.candidate_properties.candidate_metrics[0].value #=> Float
|
|
8274
8275
|
# resp.best_candidate.candidate_properties.candidate_metrics[0].set #=> String, one of "Train", "Validation", "Test"
|
|
8275
8276
|
# resp.auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
|
|
8276
|
-
# resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError"
|
|
8277
|
+
# 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"
|
|
8277
8278
|
# resp.generate_candidate_definitions_only #=> Boolean
|
|
8278
8279
|
# resp.auto_ml_job_artifacts.candidate_definition_notebook_location #=> String
|
|
8279
8280
|
# resp.auto_ml_job_artifacts.data_exploration_notebook_location #=> String
|
|
@@ -12302,7 +12303,7 @@ module Aws::SageMaker
|
|
|
12302
12303
|
# resp.auto_ml_job_summaries[0].auto_ml_job_name #=> String
|
|
12303
12304
|
# resp.auto_ml_job_summaries[0].auto_ml_job_arn #=> String
|
|
12304
12305
|
# resp.auto_ml_job_summaries[0].auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
|
|
12305
|
-
# 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"
|
|
12306
|
+
# 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"
|
|
12306
12307
|
# resp.auto_ml_job_summaries[0].creation_time #=> Time
|
|
12307
12308
|
# resp.auto_ml_job_summaries[0].end_time #=> Time
|
|
12308
12309
|
# resp.auto_ml_job_summaries[0].last_modified_time #=> Time
|
|
@@ -12387,6 +12388,7 @@ module Aws::SageMaker
|
|
|
12387
12388
|
# resp.candidates[0].last_modified_time #=> Time
|
|
12388
12389
|
# resp.candidates[0].failure_reason #=> String
|
|
12389
12390
|
# resp.candidates[0].candidate_properties.candidate_artifact_locations.explainability #=> String
|
|
12391
|
+
# resp.candidates[0].candidate_properties.candidate_artifact_locations.model_insights #=> String
|
|
12390
12392
|
# resp.candidates[0].candidate_properties.candidate_metrics #=> Array
|
|
12391
12393
|
# resp.candidates[0].candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
|
12392
12394
|
# resp.candidates[0].candidate_properties.candidate_metrics[0].value #=> Float
|
|
@@ -19448,7 +19450,7 @@ module Aws::SageMaker
|
|
|
19448
19450
|
params: params,
|
|
19449
19451
|
config: config)
|
|
19450
19452
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
19451
|
-
context[:gem_version] = '1.
|
|
19453
|
+
context[:gem_version] = '1.119.0'
|
|
19452
19454
|
Seahorse::Client::Request.new(handlers, context)
|
|
19453
19455
|
end
|
|
19454
19456
|
|
|
@@ -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
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
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.
|
|
4
|
+
version: 1.119.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-02-
|
|
11
|
+
date: 2022-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|