Skip to content

Commit 3b90014

Browse files
authored
Update to Tensorflow 1.13.1 (#116)
1 parent 79301b6 commit 3b90014

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

docs/applications/implementations/models.md

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

5555
```text
56-
tensorflow==1.12.0
56+
tensorflow==1.13.1
5757
boto3==1.9.78
5858
msgpack==0.6.1
5959
numpy>=1.13.3,<2

examples/mnist/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pillow==5.4.1
2-
tensor2tensor==1.10.0
2+
tensor2tensor==1.13.4

examples/reviews/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tensor2tensor==1.10.0
1+
tensor2tensor==1.13.4

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.12.0"
15+
ARG TF_VERSION="1.13.1"
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.12.0-gpu-py3
1+
FROM tensorflow/tensorflow:1.13.1-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.12.0-py3
1+
FROM tensorflow/tensorflow:1.13.1-py3
22

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

images/tf-serve-gpu/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM cortexlabs/tf-base-gpu
22

3-
ARG TF_VERSION="1.12.0"
3+
ARG TF_SERV_VERSION="1.13.0"
44

5-
RUN curl -o tensorflow-model-server.deb http://storage.googleapis.com/tensorflow-serving-apt/pool/tensorflow-model-server-${TF_VERSION}/t/tensorflow-model-server/tensorflow-model-server_${TF_VERSION}_all.deb
5+
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
77

88
ENTRYPOINT ["tensorflow_model_server"]

images/tf-serve/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM cortexlabs/tf-base
22

3-
ARG TF_VERSION="1.12.0"
3+
ARG TF_SERV_VERSION="1.13.0"
44

55
RUN apt-get update -qq && apt-get install -y -q \
66
curl \
77
&& apt-get clean -qq && rm -rf /var/lib/apt/lists/*
88

9-
RUN curl -o tensorflow-model-server.deb http://storage.googleapis.com/tensorflow-serving-apt/pool/tensorflow-model-server-${TF_VERSION}/t/tensorflow-model-server/tensorflow-model-server_${TF_VERSION}_all.deb
9+
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
1010
RUN dpkg -i tensorflow-model-server.deb
1111

1212
ENTRYPOINT ["tensorflow_model_server"]

pkg/workloads/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.12.0"]
42+
req_list = ["pyspark==2.4.2", "tensorflow==1.13.1"]
4343
req_files = glob.glob("/src/**/requirements.txt", recursive=True)
4444

4545
for req_file in req_files:

0 commit comments

Comments
 (0)