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

fix the image for node performance tests - model expected tensorflow… #109551

Merged
merged 1 commit into from May 4, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/images/node-perf/tf-wide-deep/Dockerfile
Expand Up @@ -21,10 +21,10 @@ RUN apt-get update && apt-get install -y wget time

RUN case $(uname -m) in \
aarch64) \
pip install tensorflow-aarch64; \
pip install tensorflow-aarch64==1.2; \
;; \
*) \
pip install tensorflow; \
pip install tensorflow==1.9.0; \
;; \
esac

Expand All @@ -35,4 +35,4 @@ RUN wget https://github.com/tensorflow/models/archive/v1.9.0.tar.gz \
WORKDIR $HOME/models-1.9.0/official/wide_deep
ENV PYTHONPATH=$PYTHONPATH:$HOME/models-1.9.0

ENTRYPOINT python ./wide_deep.py
ENTRYPOINT python ./data_download.py && python ./wide_deep.py
2 changes: 1 addition & 1 deletion test/images/node-perf/tf-wide-deep/README.md
Expand Up @@ -2,7 +2,7 @@

The container image described here predicts the income using the census income dataset in Tensorflow. For more
information, see
[https://github.com/tensorflow/models/tree/master/official/r1/wide_deep](https://github.com/tensorflow/models/tree/master/official/r1/wide_deep).
[https://github.com/tensorflow/models/tree/v2.0/official/r1/wide_deep](https://github.com/tensorflow/models/tree/v2.0/official/r1/wide_deep).
This image is used as a workload in node performance testing.

## How to release:
Expand Down
2 changes: 1 addition & 1 deletion test/images/node-perf/tf-wide-deep/VERSION
@@ -1 +1 @@
1.1
1.2