Skip to content

Commit f24c361

Browse files
authored
Merge branch 'master' into sklearn-bump-version
2 parents 4fdd3ce + 7f04190 commit f24c361

Some content is hidden

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

44 files changed

+1045
-220
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## v1.63.0 (2020-06-12)
4+
5+
### Features
6+
7+
* Allow selecting inference response content for automl generated models
8+
* Support for multi variant endpoint invocation with target variant param
9+
10+
### Documentation Changes
11+
12+
* improve docstring and remove unavailable links
13+
14+
## v1.62.0 (2020-06-11)
15+
16+
### Features
17+
18+
* Support for multi variant endpoint invocation with target variant param
19+
20+
### Bug Fixes and Other Changes
21+
22+
* Revert "feature: Support for multi variant endpoint invocation with target variant param (#1571)"
23+
* make instance_type optional for prepare_container_def
24+
* docs: workflows navigation
25+
26+
### Documentation Changes
27+
28+
* fix typo in MXNet documentation
29+
330
## v1.61.0 (2020-06-09)
431

532
### Features

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.61.1.dev0
1+
1.63.1.dev0

doc/frameworks/mxnet/using_mxnet.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ The default serialization system generates three files:
176176
- ``model-symbol.json``: The MXNet ``Module`` ``Symbol`` serialization,
177177
produced by invoking ``save`` on the ``symbol`` property of the
178178
``Module`` being saved.
179-
- ``modle.params``: The MXNet ``Module`` parameters, produced by
179+
- ``model.params``: The MXNet ``Module`` parameters, produced by
180180
invoking ``save_params`` on the ``Module`` being saved.
181181

182182
You can provide your own save function. This is useful if you are not working with the ``Module`` API or you need special processing.

doc/index.rst

+4-5
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,14 @@ Amazon SageMaker provides implementations of some common machine learning algori
5353

5454

5555
*************
56-
Orchestration
56+
Workflows
5757
*************
58-
Orchestrate your SageMaker training and inference jobs with Kubernetes and Airflow.
58+
Orchestrate your SageMaker training and inference workflows with Airflow and Kubernetes.
5959

6060
.. toctree::
61-
:maxdepth: 1
61+
:maxdepth: 2
6262

63-
kubernetes/index
64-
airflow/index
63+
workflows/index
6564

6665

6766
*************************
File renamed without changes.

doc/workflows/index.rst

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
##########
2+
Workflows
3+
##########
4+
5+
The SageMaker Python SDK supports managed training and inference for a variety of machine learning frameworks:
6+
7+
.. toctree::
8+
:maxdepth: 2
9+
10+
airflow/index
11+
kubernetes/index
File renamed without changes.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def read_version():
3434

3535
# Declare minimal set for installation
3636
required_packages = [
37-
"boto3>=1.13.6",
37+
"boto3>=1.13.24",
3838
"numpy>=1.9.0",
3939
"protobuf>=3.1",
4040
"scipy>=0.19.0",

0 commit comments

Comments
 (0)