File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
examples/tensorflow/distribution_strategy/keras-API Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,19 @@ jobs:
22
22
matrix :
23
23
include :
24
24
- component-name : tf-dist-mnist-test
25
+ platforms : linux/amd64,linux/arm64
25
26
dockerfile : examples/tensorflow/dist-mnist/Dockerfile
26
27
- component-name : tf-distributed-worker
28
+ platforms : linux/amd64,linux/arm64
27
29
dockerfile : examples/tensorflow/distribution_strategy/estimator-API/Dockerfile
28
30
- component-name : tf-multi-worker-strategy
31
+ platforms : linux/amd64,linux/arm64
29
32
dockerfile : examples/tensorflow/distribution_strategy/keras-API/Dockerfile
30
33
- component-name : tf-mnist-with-summaries
34
+ platforms : linux/amd64,linux/arm64
31
35
dockerfile : examples/tensorflow/mnist_with_summaries/Dockerfile
32
36
- component-name : tf-smoke
37
+ platforms : linux/amd64,linux/arm64
33
38
dockerfile : examples/tensorflow/tf_sample/Dockerfile
34
39
- component-name : pytorch-dist-sendrecv-test
35
40
platforms : linux/amd64,linux/arm64
Original file line number Diff line number Diff line change 1
1
FROM python:3.9
2
2
3
+ RUN apt-get update && \
4
+ apt-get install -y libhdf5-dev && \
5
+ apt-get clean && \
6
+ rm -rf /var/lib/apt/lists/*
7
+
3
8
RUN pip install tensorflow==2.11.0 tensorflow_datasets==4.7.0
4
9
5
10
COPY examples/tensorflow/distribution_strategy/keras-API/multi_worker_strategy-with-keras.py /
You can’t perform that action at this time.
0 commit comments