Skip to content

Commit 19fadc5

Browse files
authored
Merge branch 'master' into fix-code-upload
2 parents 2bab53d + cca8476 commit 19fadc5

Some content is hidden

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

60 files changed

+3106
-90
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://stackoverflow.com/questions/tagged/amazon-sagemaker
5-
about: Use Stack Overflow to ask and answer questions
4+
url: https://github.com/aws/sagemaker-python-sdk/discussions
5+
about: Use GitHub Discussions to ask and answer questions

CHANGELOG.md

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

3+
## v2.41.0 (2021-05-17)
4+
5+
### Features
6+
7+
* add pipeline experiment config
8+
* add data wrangler processor
9+
* support RetryStrategy for training jobs
10+
11+
### Bug Fixes and Other Changes
12+
13+
* fix repack pipeline step by putting inference.py in "code" sub dir
14+
* add data wrangler image uri
15+
* fix black-check errors
16+
17+
## v2.40.0 (2021-05-11)
18+
19+
### Features
20+
21+
* add xgboost framework version 1.2-2
22+
23+
### Bug Fixes and Other Changes
24+
25+
* fix get_execution_role on Studio
26+
* [fix] Check py_version existence in RegisterModel step
27+
28+
### Documentation Changes
29+
30+
* SM Distributed EFA Launch
31+
332
## v2.39.1 (2021-05-05)
433

534
### Bug Fixes and Other Changes

VERSION

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

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.1.2 (Latest)
2+
Version 1.2.0 (Latest)
33
======================
44

55
.. toctree::

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ PyTorch API
155155

156156
.. rubric:: Supported versions
157157

158-
**PyTorch 1.7.1, 1.8.0**
158+
**PyTorch 1.7.1, 1.8.1**
159159

160160

161161
.. function:: smdistributed.dataparallel.torch.distributed.is_available()

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,7 @@ TensorFlow API
157157

158158
.. rubric:: Supported versions
159159

160-
TensorFlow is supported in version 1.0.0 of ``sagemakerdistributed.dataparallel``.
161-
Reference version 1.0.0 `TensorFlow API documentation
162-
<https://sagemaker.readthedocs.io/en/stable/api/training/sdp_versions/latest/smd_data_parallel_tensorflow.html#tensorflow-sdp-api>`_
163-
for supported TensorFlow versions.
160+
**TensorFlow 2.3.1, 2.4.1**
164161

165162
.. function:: smdistributed.dataparallel.tensorflow.init()
166163

@@ -446,7 +443,7 @@ for supported TensorFlow versions.
446443

447444
*  Supported compression types - ``none``, ``fp16``
448445

449-
- ``sparse_as_dense:`` Not supported. Raises not supported error.
446+
- ``sparse_as_dense:`` Treats sparse gradient tensor as dense tensor. Defaults to ``False``.
450447

451448
- ``op (smdistributed.dataparallel.tensorflow.ReduceOp)(optional)``: The reduction operation to combine tensors across different ranks. Defaults to ``Average`` if None is given.
452449

@@ -485,6 +482,8 @@ for supported TensorFlow versions.
485482

486483
*  Supported compression types - ``none``, ``fp16``
487484

485+
- ``sparse_as_dense:`` Treats sparse gradient tensor as dense tensor. Defaults to ``False``.
486+
488487
- ``op (smdistributed.dataparallel.tensorflow.ReduceOp)(optional)``: The reduction operation to combine tensors across different ranks. Defaults to ``Average`` if None is given.
489488

490489
* Supported ops: ``AVERAGE``

doc/api/training/sdp_versions/v1.0.0/smd_data_parallel_tensorflow.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ TensorFlow API
456456

457457
*  Supported compression types - ``none``, ``fp16``
458458

459-
- ``sparse_as_dense:`` Not supported. Raises not supported error.
459+
- ``sparse_as_dense:`` Treats sparse gradient tensor as dense tensor. Defaults to ``False``.
460460

461461
- ``op (smdistributed.dataparallel.tensorflow.ReduceOp)(optional)``: The reduction operation to combine tensors across different ranks. Defaults to ``Average`` if None is given.
462462

@@ -496,6 +496,8 @@ TensorFlow API
496496

497497
*  Supported compression types - ``none``, ``fp16``
498498

499+
- ``sparse_as_dense:`` Treats sparse gradient tensor as dense tensor. Defaults to ``False``.
500+
499501
- ``op (smdistributed.dataparallel.tensorflow.ReduceOp)(optional)``: The reduction operation to combine tensors across different ranks. Defaults to ``Average`` if None is given.
500502

501503
* Supported ops: ``AVERAGE``

0 commit comments

Comments
 (0)