Skip to content

Commit 539c6ad

Browse files
authored
Merge branch 'master' into doc_inputs
2 parents fa28b77 + bcdfc6c commit 539c6ad

File tree

81 files changed

+6320
-666
lines changed

Some content is hidden

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

81 files changed

+6320
-666
lines changed

CHANGELOG.md

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,112 @@
11
# Changelog
22

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

5112
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.46.1.dev0
1+
2.49.3.dev0

doc/_static/aws-ux-shortbread/index.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/_static/aws-ux-shortbread/init.js

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
(function (w) {
2+
w.URLSearchParams = w.URLSearchParams || function (searchString) {
3+
var self = this;
4+
self.searchString = searchString;
5+
self.get = function (name) {
6+
var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(self.searchString);
7+
if (results === null) {
8+
return null;
9+
}
10+
else {
11+
return decodeURI(results[1]) || 0;
12+
}
13+
};
14+
}
15+
})(window);
16+
17+
const queryString = window.location.search;
18+
const urlParams = new URLSearchParams(queryString);
19+
const lang = urlParams.get('lang')
20+
window.onload = function () {
21+
var domainName = window.location.hostname;
22+
23+
// remove an instance of shortbread if already exists
24+
var existingShortbreadEl = document.getElementById("awsccc-sb-ux-c");
25+
existingShortbreadEl && existingShortbreadEl.remove();
26+
27+
var shortbread = AWSCShortbread({
28+
domain: domainName,
29+
language: lang,
30+
//queryGeolocation: function (geolocatedIn) { geolocatedIn("EU") },
31+
});
32+
33+
shortbread.checkForCookieConsent();
34+
}

doc/amazon_sagemaker_featurestore.rst

Lines changed: 7 additions & 0 deletions
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

Lines changed: 5 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 6 additions & 4 deletions
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

Lines changed: 0 additions & 91 deletions
This file was deleted.

0 commit comments

Comments
 (0)