Merge pull request #109551 from SergeyKanzhelev/fixTensorflow

fix the image for node performance tests - model expected tensorflow…
This commit is contained in:
Kubernetes Prow Robot 2022-05-04 01:29:30 -07:00 committed by GitHub
commit fa69786fa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -21,10 +21,10 @@ RUN apt-get update && apt-get install -y wget time
RUN case $(uname -m) in \ RUN case $(uname -m) in \
aarch64) \ aarch64) \
pip install tensorflow-aarch64; \ pip install tensorflow-aarch64==1.2; \
;; \ ;; \
*) \ *) \
pip install tensorflow; \ pip install tensorflow==1.9.0; \
;; \ ;; \
esac esac
@ -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 WORKDIR $HOME/models-1.9.0/official/wide_deep
ENV PYTHONPATH=$PYTHONPATH:$HOME/models-1.9.0 ENV PYTHONPATH=$PYTHONPATH:$HOME/models-1.9.0
ENTRYPOINT python ./wide_deep.py ENTRYPOINT python ./data_download.py && python ./wide_deep.py

View File

@ -2,7 +2,7 @@
The container image described here predicts the income using the census income dataset in Tensorflow. For more The container image described here predicts the income using the census income dataset in Tensorflow. For more
information, see 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. This image is used as a workload in node performance testing.
## How to release: ## How to release:

View File

@ -1 +1 @@
1.1 1.2