Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reconcile tensorflow serving version #409

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
reconcile tensorflow serving version
Since default OBJ_DETECTION_IMAGE tensorflow version is 1.10.0, we
pin consistent version 1.10.0 of TF across the example.

Fixes: #408
  • Loading branch information
hougangliu committed Dec 8, 2018
commit 9ce8a9f0f1f69a10009cbb4c4420b8d5f3511e18
2 changes: 1 addition & 1 deletion object_detection/docker/Dockerfile.training
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN curl -O https://bootstrap.pypa.io/get-pip.py && \
rm get-pip.py

RUN pip --no-cache-dir install \
tensorflow
tensorflow==1.10.0

RUN pip --no-cache-dir install \
Cython \
Expand Down
2 changes: 2 additions & 0 deletions object_detection/ks-app/components/params.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@
numGpus: 1,
},
"pets-model": {
defaultCpuImage: 'tensorflow/serving:1.10.0',
defaultGpuImage: 'tensorflow/serving:1.10.0-gpu',
deployHttpProxy: true,
modelPath: '/mnt/exported_graphs/saved_model',
modelStorageType: 'nfs',
Expand Down