Skip to content

Commit e3e38a8

Browse files
authored
Merge branch 'dev' into adding-tf24-ioc
2 parents ec72086 + 26b984a commit e3e38a8

File tree

201 files changed

+18012
-1276
lines changed

Some content is hidden

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

201 files changed

+18012
-1276
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ venv/
2828
.docker/
2929
env/
3030
.vscode/
31+
**/tmp
3132
.python-version

CHANGELOG.md

+123-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,132 @@
11
# Changelog
22

3+
## v2.77.0 (2022-02-22)
4+
5+
### Features
6+
7+
* override jumpstart content bucket
8+
* jumpstart model id suggestions
9+
* adding customer metadata support to registermodel step
10+
11+
### Bug Fixes and Other Changes
12+
13+
* Improve Pipeline workflow unit test branch coverage
14+
* update lineage_trial_compoment get pipeline execution arn
15+
* Add lineage doc
16+
* Support primitive types for left value of ConditionSteps
17+
18+
## v2.76.0 (2022-02-17)
19+
20+
### Features
21+
22+
* Add FailStep Support for Sagemaker Pipeline
23+
24+
### Bug Fixes and Other Changes
25+
26+
* use recommended inference image uri from Neo API
27+
* pin test dependencies
28+
* Add exception in test_action
29+
* Update Static Endpoint
30+
* Add CMH to the non-P3 list
31+
32+
### Documentation Changes
33+
34+
* Support for generation of Jumpstart model table on build
35+
36+
## v2.75.1 (2022-02-08)
37+
38+
### Bug Fixes and Other Changes
39+
40+
* Add CMH to the non-P3 list
41+
42+
## v2.75.0 (2022-02-05)
43+
44+
### Features
45+
46+
* JumpStart Integration
47+
* Adds support for async inference
48+
* Update instance types for integ test
49+
50+
### Bug Fixes and Other Changes
51+
52+
* Revert "feature: CompilationStep support for Sagemaker Pipelines
53+
* gpu use p3/p2 per avail for region
54+
* jumpstart typo
55+
* pin pytest-xdist to avoid release failures
56+
* set sagemaker_connection and image_uri in register method
57+
* update to incorporate black v22, pin tox versions
58+
* Add deprecation warning in Clarify DataConfig
59+
60+
### Documentation Changes
61+
62+
* Jumpstart doc strings and added new sections
63+
* Add Jumpstart support documentation
64+
65+
## v2.74.0 (2022-01-26)
66+
67+
### Features
68+
69+
* Add support for SageMaker lineage queries context
70+
71+
### Bug Fixes and Other Changes
72+
73+
* support specifying a facet by its column index
74+
75+
### Documentation Changes
76+
77+
* more documentation for serverless inference
78+
79+
## v2.73.0 (2022-01-19)
80+
81+
### Features
82+
83+
* Add EMRStep support in Sagemaker pipeline
84+
* Adds Lineage queries in artifact, context and trial components
85+
* Add support for SageMaker lineage queries in action
86+
* Adds support for Serverless inference
87+
* support checkpoint to be passed from estimator
88+
* support JsonGet/Join parameterization in tuning step Hyperparameters
89+
* Support model pipelines in CreateModelStep
90+
* enable python 3.9
91+
* Add models_v2 under lineage context
92+
93+
### Bug Fixes and Other Changes
94+
95+
* allow kms_key to be passed for processing step
96+
* Remove duplicate vertex/edge in query lineage
97+
* update pricing link
98+
* Update CHANGELOG.md
99+
* fixes unnecessary session call while generating pipeline definition for lambda step
100+
101+
### Documentation Changes
102+
103+
* Enhance smddp 1.2.2 doc
104+
* Document the available ExecutionVariables
105+
3106
## v2.72.3 (2022-01-10)
4107

108+
### Features
109+
110+
* default repack encryption
111+
* support large pipeline
112+
* add support for pytorch 1.10.0
113+
114+
### Documentation Changes
115+
116+
* SageMaker model parallel library 1.6.0 API doc
117+
5118
### Bug Fixes and Other Changes
6119

7-
* update master from dev
120+
* Model Registration with BYO scripts
121+
* Add ContentType in test_auto_ml_describe
122+
* Re-deploy static integ test endpoint if it is not found
123+
* fix kmeans test deletion sequence, increment lineage statics
124+
* Increment static lineage pipeline
125+
* Fix lineage query integ tests
126+
* Add label_headers option for Clarify ModelExplainabilityMonitor
127+
* Add action type to lineage object
128+
* Collapse cross-account artifacts in query lineage response
129+
* Update CHANGELOG.md to remove defaulting dot characters
8130

9131
## v2.72.2 (2022-01-06)
10132

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ SageMaker Python SDK is tested on:
9090
- Python 3.6
9191
- Python 3.7
9292
- Python 3.8
93+
- Python 3.9
9394

9495
AWS Permissions
9596
~~~~~~~~~~~~~~~

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.72.4.dev0
1+
2.77.1.dev0

doc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# You can set these variables from the command line.
55
SPHINXOPTS = -W
6-
SPHINXBUILD = python -msphinx
6+
SPHINXBUILD = python -msphinx
77
SPHINXPROJ = sagemaker
88
SOURCEDIR = .
99
BUILDDIR = _build

doc/api/inference/async_inference.rst

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Async Inference
2+
-----------------
3+
4+
This module contains classes related to Amazon Sagemaker Async Inference
5+
6+
.. automodule:: sagemaker.async_inference.async_inference_config
7+
:members:
8+
:undoc-members:
9+
:show-inheritance:
10+
11+
.. automodule:: sagemaker.async_inference.async_inference_response
12+
:members:
13+
:undoc-members:
14+
:show-inheritance:
15+
16+
.. automodule:: sagemaker.async_inference.waiter_config
17+
:members:
18+
:undoc-members:
19+
:show-inheritance:

doc/api/inference/predictor_async.rst

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
AsyncPredictor
2+
--------------------
3+
4+
Make async predictions against SageMaker endpoints with Python objects
5+
6+
.. autoclass:: sagemaker.predictor_async.AsyncPredictor
7+
:members:
8+
:undoc-members:
9+
:show-inheritance:

doc/api/inference/serverless.rst

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Serverless Inference
2+
---------------------
3+
4+
This module contains classes related to Amazon Sagemaker Serverless Inference
5+
6+
.. automodule:: sagemaker.serverless.serverless_inference_config
7+
:members:
8+
:undoc-members:
9+
:show-inheritance:

0 commit comments

Comments
 (0)