Skip to content

Commit 7634265

Browse files
Bump version to 1.9.1 (#360)
1 parent 081c68a commit 7634265

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
CHANGELOG
33
=========
44

5-
1.9.1dev
6-
========
5+
1.9.1
6+
=====
77

88
* bug-fix: Estimators: Fix serialization of single records
99
* bug-fix: deprecate enable_cloudwatch_metrics from Framework Estimators.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You can install from source by cloning this repository and running a pip install
5454

5555
git clone https://github.com/aws/sagemaker-python-sdk.git
5656
python setup.py sdist
57-
pip install dist/sagemaker-1.9.0.tar.gz
57+
pip install dist/sagemaker-1.9.1.tar.gz
5858

5959
Supported Operating Systems
6060
~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -326,7 +326,7 @@ SageMaker Automatic Model Tuning
326326
All of the estimators can be used with SageMaker Automatic Model Tuning, which performs hyperparameter tuning jobs.
327327
A hyperparameter tuning job finds the best version of a model by running many training jobs on your dataset using the algorithm with different values of hyperparameters within ranges
328328
that you specify. It then chooses the hyperparameter values that result in a model that performs the best, as measured by a metric that you choose.
329-
If you're not using an Amazon SageMaker built-in algorithm, then the metric is defined by a regular expression (regex) you provide.
329+
If you're not using an Amazon SageMaker built-in algorithm, then the metric is defined by a regular expression (regex) you provide.
330330
The hyperparameter tuning job parses the training job's logs to find metrics that match the regex you defined.
331331
For more information about SageMaker Automatic Model Tuning, see `AWS documentation <https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning.html>`__.
332332

@@ -377,7 +377,7 @@ In addition, the ``fit()`` call uses a list of ``RecordSet`` objects instead of
377377
# Start hyperparameter tuning job
378378
my_tuner.fit([train_records, test_records])
379379
380-
To help attach a previously-started hyperparameter tuning job to a ``HyperparameterTuner`` instance,
380+
To help attach a previously-started hyperparameter tuning job to a ``HyperparameterTuner`` instance,
381381
``fit()`` adds the module path of the class used to create the tuner to the list of static hyperparameters by default.
382382
If the algorithm you are using cannot handle unknown hyperparameters
383383
(for example, an Amazon SageMaker built-in algorithm that does not have a custom estimator in the Python SDK),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def read(fname):
2323

2424

2525
setup(name="sagemaker",
26-
version="1.9.0",
26+
version="1.9.1",
2727
description="Open source library for training and deploying models on Amazon SageMaker.",
2828
packages=find_packages('src'),
2929
package_dir={'': 'src'},

0 commit comments

Comments
 (0)