Skip to content

Commit 4ded19c

Browse files
authored
Merge remote-tracking branch 'upstream/master'
Merge pull request aws#40 from athewsey/feat/fw-processor
2 parents dd0294d + f537cc8 commit 4ded19c

File tree

64 files changed

+4753
-659
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+4753
-659
lines changed

CHANGELOG.md

+104
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,109 @@
11
# Changelog
22

3+
## v2.49.0 (2021-07-15)
4+
5+
### Features
6+
7+
* Adding serial inference pipeline support to RegisterModel Step
8+
9+
### Documentation Changes
10+
11+
* add tuning step get_top_model_s3_uri and callback step to doc
12+
* links for HF in sdk
13+
* Add Clarify module to Model Monitoring API docs
14+
15+
## v2.48.2 (2021-07-12)
16+
17+
### Bug Fixes and Other Changes
18+
19+
* default time for compilation jobs
20+
* skip hf inference test
21+
22+
## v2.48.1 (2021-07-08)
23+
24+
### Bug Fixes and Other Changes
25+
26+
* skip HF inference test
27+
* remove upsert from test_workflow
28+
29+
### Documentation Changes
30+
31+
* Add Hugging Face docs
32+
* add tuning step to doc
33+
34+
## v2.48.0 (2021-07-07)
35+
36+
### Features
37+
38+
* HuggingFace Inference
39+
40+
### Bug Fixes and Other Changes
41+
42+
* add support for SageMaker workflow tuning step
43+
44+
## v2.47.2.post0 (2021-07-01)
45+
46+
### Documentation Changes
47+
48+
* smddp 1.2.1 release note / convert md to rst
49+
* add smd model parallel 1.4.0 release note / restructure doc files
50+
51+
## v2.47.2 (2021-06-30)
52+
53+
### Bug Fixes and Other Changes
54+
55+
* handle tags when upsert pipeine
56+
57+
## v2.47.1 (2021-06-27)
58+
59+
### Bug Fixes and Other Changes
60+
61+
* revert "fix: jsonGet interpolation issue 2426 + allow step depends on pass in step instance (#2477)"
62+
63+
## v2.47.0 (2021-06-25)
64+
65+
### Features
66+
67+
* support job_name_prefix for Clarify
68+
69+
### Bug Fixes and Other Changes
70+
71+
* Add configuration option with headers for Clarify Explainability
72+
* jsonGet interpolation issue 2426 + allow step depends on pass in step instance
73+
* add default retries to feature group ingestion.
74+
* Update using_pytorch.rst
75+
* kms key does not propapate in register model step
76+
* Correctly interpolate Callback output parameters
77+
78+
## v2.46.1 (2021-06-22)
79+
80+
### Bug Fixes and Other Changes
81+
82+
* Register model step tags
83+
84+
### Documentation Changes
85+
86+
* update to include new batch_get_record api call
87+
* Correct type annotation for TrainingStep inputs
88+
* introduce input mode FastFile
89+
* update hf transformer version
90+
91+
## v2.46.0 (2021-06-15)
92+
93+
### Features
94+
95+
* Add HF transformer version 4.6.1
96+
97+
### Bug Fixes and Other Changes
98+
99+
* encode localmode payload to UTF-8
100+
* call DescribeDomain as fallback in get_execution_role
101+
* parameterize PT and TF version for HuggingFace tests
102+
103+
### Documentation Changes
104+
105+
* Add import statement in Batch Transform Overview doc
106+
3107
## v2.45.0 (2021-06-07)
4108

5109
### Features

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.45.1.dev0
1+
2.49.1.dev0

doc/amazon_sagemaker_featurestore.rst

+7
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,13 @@ example identifier to retrieve the record.
291291
record_identifier_value = str(2990130)
292292
featurestore_runtime.get_record(FeatureGroupName=transaction_feature_group_name, RecordIdentifierValueAsString=record_identifier_value)
293293
294+
You can use the ``batch_get_record`` function to retrieve multiple records simultaneously from your feature store. The following example uses this API to retrieve a batch of records.
295+
296+
.. code:: python
297+
298+
record_identifier_values = ["573291", "109382", "828400", "124013"]
299+
featurestore_runtime.batch_get_record(Identifiers=[{"FeatureGroupName": transaction_feature_group_name, "RecordIdentifiersValueAsString": record_identifier_values}])
300+
294301
An example response from the fraud detection example:
295302
296303
.. code:: python

doc/api/inference/model_monitor.rst

+5
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ Model Monitor
2626
:members:
2727
:undoc-members:
2828
:show-inheritance:
29+
30+
.. automodule:: sagemaker.model_monitor.clarify_model_monitoring
31+
:members:
32+
:undoc-members:
33+
:show-inheritance:

doc/api/training/sdp_versions/latest.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Version 1.2.0 (Latest)
2+
Version 1.2.x (Latest)
33
======================
44

55
.. toctree::

doc/api/training/sdp_versions/latest/smd_data_parallel_tensorflow.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ TensorFlow API
157157

158158
.. rubric:: Supported versions
159159

160-
**TensorFlow 2.3.1, 2.4.1**
160+
**TensorFlow 2.3.1, 2.4.1, 2.5.0**
161161

162162
.. function:: smdistributed.dataparallel.tensorflow.init()
163163

doc/api/training/smd_data_parallel.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ Select a version to see the API documentation for version.
101101
Release Notes
102102
=============
103103

104-
New features, bug fixes, and improvements are regularly made to the SageMaker distributed data parallel library.
104+
New features, bug fixes, and improvements are regularly made to the SageMaker
105+
distributed data parallel library.
105106

106-
To see the the latest changes made to the library, refer to the library
107-
`Release Notes
108-
<https://github.com/aws/sagemaker-python-sdk/blob/master/doc/api/training/smd_data_parallel_release_notes/>`_.
107+
.. toctree::
108+
:maxdepth: 1
109+
110+
smd_data_parallel_release_notes/smd_data_parallel_change_log

doc/api/training/smd_data_parallel_release_notes/smd_data_parallel_change_log.md

-91
This file was deleted.

0 commit comments

Comments
 (0)