File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 2
2
CHANGELOG
3
3
=========
4
4
5
- 1.16.2
6
- ======
5
+ 1.16.2.dev
6
+ ==========
7
7
8
+ * bug-fix: Remove unnecessary dependency tensorflow
8
9
* doc-fix: Change ``distribution `` to ``distributions ``
9
10
* bug-fix: Increase docker-compose http timeout and health check timeout to 120.
10
11
* feature: Local Mode: Add support for intermediate output to a local directory.
@@ -33,6 +34,7 @@ CHANGELOG
33
34
* feature: Add support for SageMaker Inference Pipelines
34
35
* feature: Add support for SparkML serving container
35
36
37
+
36
38
1.15.2
37
39
======
38
40
Original file line number Diff line number Diff line change 19
19
# classes for tensorflow serving. Currently tensorflow_serving_api can only be pip-installed for python 2.
20
20
sys .path .append (os .path .dirname (__file__ ))
21
21
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
-
30
22
from sagemaker .tensorflow .estimator import TensorFlow # noqa: E402, F401
31
23
from sagemaker .tensorflow .model import TensorFlowModel , TensorFlowPredictor # noqa: E402, F401
You can’t perform that action at this time.
0 commit comments