File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 22CHANGELOG
33=========
44
5- 1.16.2
6- ======
5+ 1.16.2.dev
6+ ==========
77
8+ * bug-fix: Remove unnecessary dependency tensorflow
89* doc-fix: Change ``distribution `` to ``distributions ``
910* bug-fix: Increase docker-compose http timeout and health check timeout to 120.
1011* feature: Local Mode: Add support for intermediate output to a local directory.
@@ -33,6 +34,7 @@ CHANGELOG
3334* feature: Add support for SageMaker Inference Pipelines
3435* feature: Add support for SparkML serving container
3536
37+
36381.15.2
3739======
3840
Original file line number Diff line number Diff line change 1919# classes for tensorflow serving. Currently tensorflow_serving_api can only be pip-installed for python 2.
2020sys .path .append (os .path .dirname (__file__ ))
2121
22- from distutils .version import LooseVersion # noqa: E402, F401 pylint: disable=no-name-in-module
23- import tensorflow # noqa: E402, F401
24-
25- if LooseVersion (tensorflow .__version__ ) < LooseVersion ("1.3.0" ): # pylint: disable=no-member
26- message = 'Tensorflow version must be >= 1.3.0. Current version: {}' .format (
27- tensorflow .__version__ ) # pylint: disable=no-member
28- raise AssertionError (message )
29-
3022from sagemaker .tensorflow .estimator import TensorFlow # noqa: E402, F401
3123from sagemaker .tensorflow .model import TensorFlowModel , TensorFlowPredictor # noqa: E402, F401
You can’t perform that action at this time.
0 commit comments