github.com/kubeflow/training-operator@v1.7.0/examples/tensorflow/dist-mnist/README.md (about) 1 ### Distributed mnist model for e2e test 2 3 This folder containers Dockerfile and distributed mnist model for e2e test. 4 5 **Build Image** 6 7 The default image name and tag is `kubeflow/tf-dist-mnist-test:1.0`. 8 9 To build this image on x86_64: 10 ```shell 11 docker build -f Dockerfile -t kubeflow/tf-dist-mnist-test:1.0 ./ 12 ``` 13 To build this image on ppc64le: 14 ```shell 15 docker build -f Dockerfile.ppc64le -t kubeflow123/tf-dist-mnist-test:1.0 ./ 16 ``` 17 18 **Create TFJob YAML** 19 20 ``` 21 kubectl create -f ./tf_job_mnist.yaml 22 ``` 23 * If on ppc64le, please update tf_job_mnist.yaml to use the image of ppc64le firstly.