Skip to content

Commit ba0b541

Browse files
committed
Update TensorFlow to 1.14
1 parent 52252ef commit ba0b541

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

docs/pipelines/estimators-custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ You can import PyPI packages or your own Python packages to help create more com
5555
The following packages have been pre-installed and can be used in your implementations:
5656

5757
```text
58-
tensorflow==1.13.1
58+
tensorflow==1.14.0
5959
boto3==1.9.78
6060
msgpack==0.6.1
6161
numpy>=1.13.3,<2

images/spark-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN mkdir -p /opt
1212

1313
ARG HADOOP_VERSION="2.9.2"
1414
ARG SPARK_VERSION="2.4.2"
15-
ARG TF_VERSION="1.13.1"
15+
ARG TF_VERSION="1.14.0"
1616
# Required for building tensorflow spark connector
1717
ARG SCALA_VERSION="2.12"
1818
# Scalatest version from https://github.com/apache/spark/blob/v2.4.2/pom.xml

images/tf-base-gpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM tensorflow/tensorflow:1.13.1-gpu-py3
1+
FROM tensorflow/tensorflow:1.14.0-gpu-py3
22

33
RUN apt-get update -qq && apt-get install -y -q \
44
zlib1g-dev \

images/tf-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM tensorflow/tensorflow:1.13.1-py3
1+
FROM tensorflow/tensorflow:1.14.0-py3
22

33
RUN apt-get update -qq && apt-get install -y -q \
44
zlib1g-dev \

images/tf-serve-gpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM cortexlabs/tf-base-gpu
22

3-
ARG TF_SERV_VERSION="1.13.0"
3+
ARG TF_SERV_VERSION="1.14.0"
44

55
RUN curl -o tensorflow-model-server.deb http://storage.googleapis.com/tensorflow-serving-apt/pool/tensorflow-model-server-${TF_SERV_VERSION}/t/tensorflow-model-server/tensorflow-model-server_${TF_SERV_VERSION}_all.deb
66
RUN dpkg -i tensorflow-model-server.deb

images/tf-serve/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM cortexlabs/tf-base
22

3-
ARG TF_SERV_VERSION="1.13.0"
3+
ARG TF_SERV_VERSION="1.14.0"
44

55
RUN apt-get update -qq && apt-get install -y -q \
66
curl \

pkg/workloads/cortex/lib/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_build_order(python_packages):
3939

4040

4141
def get_restricted_packages():
42-
req_list = ["pyspark==2.4.2", "tensorflow==1.13.1"]
42+
req_list = ["pyspark==2.4.2", "tensorflow==1.14.0"]
4343
req_files = glob.glob("/src/**/requirements.txt", recursive=True)
4444

4545
for req_file in req_files:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
flask==1.0.2
22
flask-api==1.1
33
waitress==1.2.1
4-
tensorflow-serving-api==1.13.0
4+
tensorflow-serving-api==1.14.0

0 commit comments

Comments
 (0)