aws-sdk-sagemaker 1.128.0 → 1.131.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +246 -27
- data/lib/aws-sdk-sagemaker/client_api.rb +121 -2
- data/lib/aws-sdk-sagemaker/types.rb +483 -41
- 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: 7c8f5434aa4b7cc42d620d4b6ac7603967d9f2c8b4242dfe08f0884a4b39418a
|
4
|
+
data.tar.gz: cbfbed93d558ee0f9db28a909a46e70e2cf91f8e69a669b1ead5eadb94fe2bcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48a26eb2dc6d79bac55351d90f6b56ee068876bd0b46ea585bd8fac6e68a523cbcdd95b60946032deb7993d7e8f925355486ac492d77810f170cc1c89d505511
|
7
|
+
data.tar.gz: 3673bb931dab8f6bec2a312cc2bae1303a7f15a65766ed77ca2e7d19c80541705d97b9eb40071781c44d310dccfa5afdcc0dc80f5d396b6d24cff1ba87c18bcb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.131.0 (2022-07-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for G5, P4d, and C6i instance types in Amazon SageMaker Inference and increases the number of hyperparameters that can be searched from 20 to 30 in Amazon SageMaker Automatic Model Tuning
|
8
|
+
|
9
|
+
1.130.0 (2022-07-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Heterogeneous clusters: the ability to launch training jobs with multiple instance types. This enables running component of the training job on the instance type that is most suitable for it. e.g. doing data processing and augmentation on CPU instances and neural network training on GPU instances
|
13
|
+
|
14
|
+
1.129.0 (2022-06-29)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds: UpdateFeatureGroup, UpdateFeatureMetadata, DescribeFeatureMetadata APIs; FeatureMetadata type in Search API; LastModifiedTime, LastUpdateStatus, OnlineStoreTotalSizeBytes in DescribeFeatureGroup API.
|
18
|
+
|
4
19
|
1.128.0 (2022-06-23)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.131.0
|