aws-sdk-sagemakermetrics 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemakermetrics/client.rb +5 -4
- data/lib/aws-sdk-sagemakermetrics/types.rb +9 -10
- data/lib/aws-sdk-sagemakermetrics.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: 0c3922f34c901aa2ac3c701bafb6341638ba539fc730121d5d739e1f497000ce
|
4
|
+
data.tar.gz: bdd7a64548f5146525c124af7a3fa41e5d2544312b9f45e537255fa791bce4ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90cd4f712269bbeb79656d8cfc4e38b1e96f6ad5a2352aead3b0d515c3367c471adcd10e786b81690ec83dc4c0ac753e627534236213c9d7ee19e5a107328101
|
7
|
+
data.tar.gz: 73486bb3291ba42d73d99a711e5f9c5c5022559e6ba88dea5097392e7d03dcaa390307566af69c7ec79dbd53f505748cedcf6cfdc2930fffe854567fcc6256a2
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.1.0
|
@@ -368,11 +368,12 @@ module Aws::SageMakerMetrics
|
|
368
368
|
|
369
369
|
# @!group API Operations
|
370
370
|
|
371
|
-
# Used to ingest training metrics into SageMaker
|
372
|
-
# in SageMaker Studio and retrieved with the `GetMetrics`
|
371
|
+
# Used to ingest training metrics into SageMaker. These metrics can be
|
372
|
+
# visualized in SageMaker Studio and retrieved with the `GetMetrics`
|
373
|
+
# API.
|
373
374
|
#
|
374
375
|
# @option params [required, String] :trial_component_name
|
375
|
-
# The name of Trial Component to associate the metrics
|
376
|
+
# The name of the Trial Component to associate with the metrics.
|
376
377
|
#
|
377
378
|
# @option params [required, Array<Types::RawMetricData>] :metric_data
|
378
379
|
# A list of raw metric values to put.
|
@@ -423,7 +424,7 @@ module Aws::SageMakerMetrics
|
|
423
424
|
params: params,
|
424
425
|
config: config)
|
425
426
|
context[:gem_name] = 'aws-sdk-sagemakermetrics'
|
426
|
-
context[:gem_version] = '1.
|
427
|
+
context[:gem_version] = '1.1.0'
|
427
428
|
Seahorse::Client::Request.new(handlers, context)
|
428
429
|
end
|
429
430
|
|
@@ -16,14 +16,14 @@ module Aws::SageMakerMetrics
|
|
16
16
|
# The error code of an error that occured when attempting to put
|
17
17
|
# metrics.
|
18
18
|
#
|
19
|
-
# * `METRIC_LIMIT_EXCEEDED
|
20
|
-
#
|
19
|
+
# * `METRIC_LIMIT_EXCEEDED`\: The maximum amount of metrics per
|
20
|
+
# resource is exceeded.
|
21
21
|
#
|
22
|
-
# * `INTERNAL_ERROR
|
22
|
+
# * `INTERNAL_ERROR`\: An internal error occured.
|
23
23
|
#
|
24
|
-
# * `VALIDATION_ERROR
|
24
|
+
# * `VALIDATION_ERROR`\: The metric data failed validation.
|
25
25
|
#
|
26
|
-
# * `CONFLICT_ERROR
|
26
|
+
# * `CONFLICT_ERROR`\: Multiple requests attempted to modify the same
|
27
27
|
# data simultaneously.
|
28
28
|
# @return [String]
|
29
29
|
#
|
@@ -41,7 +41,7 @@ module Aws::SageMakerMetrics
|
|
41
41
|
end
|
42
42
|
|
43
43
|
# @!attribute [rw] trial_component_name
|
44
|
-
# The name of Trial Component to associate the metrics
|
44
|
+
# The name of the Trial Component to associate with the metrics.
|
45
45
|
# @return [String]
|
46
46
|
#
|
47
47
|
# @!attribute [rw] metric_data
|
@@ -58,8 +58,7 @@ module Aws::SageMakerMetrics
|
|
58
58
|
end
|
59
59
|
|
60
60
|
# @!attribute [rw] errors
|
61
|
-
#
|
62
|
-
# this.
|
61
|
+
# Lists any errors that occur when inserting metric data.
|
63
62
|
# @return [Array<Types::BatchPutMetricsError>]
|
64
63
|
#
|
65
64
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-metrics-2022-09-30/BatchPutMetricsResponse AWS API Documentation
|
@@ -77,11 +76,11 @@ module Aws::SageMakerMetrics
|
|
77
76
|
# @return [String]
|
78
77
|
#
|
79
78
|
# @!attribute [rw] timestamp
|
80
|
-
# The time
|
79
|
+
# The time that the metric was recorded.
|
81
80
|
# @return [Time]
|
82
81
|
#
|
83
82
|
# @!attribute [rw] step
|
84
|
-
#
|
83
|
+
# The metric step (epoch).
|
85
84
|
# @return [Integer]
|
86
85
|
#
|
87
86
|
# @!attribute [rw] value
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sagemakermetrics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.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-12-
|
11
|
+
date: 2022-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|