Skip to content

Commit e0ad061

Browse files
authored
Add 'tuner' to imports in 'sagemaker/__init__.py' (#610)
1 parent dfadeeb commit e0ad061

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ CHANGELOG
33
=========
44

55

6+
1.18.1.dev
7+
==========
8+
9+
* enhancement: Add ``tuner`` to imports in ``sagemaker/__init__.py``
10+
611
1.18.0
712
======
813

@@ -21,11 +26,9 @@ CHANGELOG
2126
* enhancement: Workflow: Specify tasks from which training/tuning operator to transform/deploy in related operators
2227
* feature: Supporting inter-container traffic encryption flag
2328

24-
2529
1.17.0
2630
======
2731

28-
2932
* bug-fix: Workflow: Revert appending Airflow retry id to default job name
3033
* feature: support for Tensorflow 1.12
3134
* feature: support for Tensorflow Serving 1.12
@@ -42,7 +45,6 @@ CHANGELOG
4245
* enhancement: Add Model.transformer()
4346
* bug-fix: HyperparameterTuner: make ``include_cls_metadata`` default to ``False`` for everything except Frameworks
4447

45-
4648
1.16.3
4749
======
4850

src/sagemaker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# language governing permissions and limitations under the License.
1313
from __future__ import absolute_import
1414

15-
from sagemaker import estimator, parameter # noqa: F401
15+
from sagemaker import estimator, parameter, tuner # noqa: F401
1616
from sagemaker.amazon.kmeans import KMeans, KMeansModel, KMeansPredictor # noqa: F401
1717
from sagemaker.amazon.pca import PCA, PCAModel, PCAPredictor # noqa: F401
1818
from sagemaker.amazon.lda import LDA, LDAModel, LDAPredictor # noqa: F401

0 commit comments

Comments
 (0)