Skip to content

Commit 4a1c4df

Browse files
committed
Merge branch 'dev' of https://github.com/aws/sagemaker-python-sdk into dev
2 parents b3c19d8 + a765512 commit 4a1c4df

File tree

179 files changed

+16913
-1228
lines changed

Some content is hidden

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

179 files changed

+16913
-1228
lines changed

.gitignore

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

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

3+
## v2.75.0 (2022-02-05)
4+
5+
### Features
6+
7+
* JumpStart Integration
8+
* Adds support for async inference
9+
* Update instance types for integ test
10+
11+
### Bug Fixes and Other Changes
12+
13+
* Revert "feature: CompilationStep support for Sagemaker Pipelines
14+
* gpu use p3/p2 per avail for region
15+
* jumpstart typo
16+
* pin pytest-xdist to avoid release failures
17+
* set sagemaker_connection and image_uri in register method
18+
* update to incorporate black v22, pin tox versions
19+
* Add deprecation warning in Clarify DataConfig
20+
21+
### Documentation Changes
22+
23+
* Jumpstart doc strings and added new sections
24+
* Add Jumpstart support documentation
25+
26+
## v2.74.0 (2022-01-26)
27+
28+
### Features
29+
30+
* Add support for SageMaker lineage queries context
31+
32+
### Bug Fixes and Other Changes
33+
34+
* support specifying a facet by its column index
35+
36+
### Documentation Changes
37+
38+
* more documentation for serverless inference
39+
40+
## v2.73.0 (2022-01-19)
41+
42+
### Features
43+
44+
* Add EMRStep support in Sagemaker pipeline
45+
* Adds Lineage queries in artifact, context and trial components
46+
* Add support for SageMaker lineage queries in action
47+
* Adds support for Serverless inference
48+
* support checkpoint to be passed from estimator
49+
* support JsonGet/Join parameterization in tuning step Hyperparameters
50+
* Support model pipelines in CreateModelStep
51+
* enable python 3.9
52+
* Add models_v2 under lineage context
53+
54+
### Bug Fixes and Other Changes
55+
56+
* allow kms_key to be passed for processing step
57+
* Remove duplicate vertex/edge in query lineage
58+
* update pricing link
59+
* Update CHANGELOG.md
60+
* fixes unnecessary session call while generating pipeline definition for lambda step
61+
62+
### Documentation Changes
63+
64+
* Enhance smddp 1.2.2 doc
65+
* Document the available ExecutionVariables
66+
367
## v2.72.3 (2022-01-10)
468

569
### Features

README.rst

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

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

doc/Makefile

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

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

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

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