From 8cef8a19d3b377acd11ae4d7aec211947b7b407c Mon Sep 17 00:00:00 2001 From: Kaustav Mukherjee Date: Tue, 21 Jan 2020 05:22:08 +0530 Subject: [PATCH 1/3] Updated the GPU compatible Docker builiding porcess with the Kubeflow provided pytorch Docker Image provided in PR #255 Updated the GPU compatible Docker builiding porcess with the Kubeflow provided pytorch Docker Image --- examples/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/examples/README.md b/examples/README.md index f5708f44c..db7f15c7c 100644 --- a/examples/README.md +++ b/examples/README.md @@ -27,4 +27,12 @@ 3. Building image. Each example has prebuilt images that are stored on google cloud resources (GCR). If you want to create your own image we recommend using dockerhub. Each example has its own Dockerfile that we strongly advise to use. To build your custom image follow instruction on [TechRepublic](https://www.techrepublic.com/article/how-to-create-a-docker-image-and-push-it-to-docker-hub/). +or + +Use the pytorch Docker Image provided by Kubeflow. + +``` + docker build ./pytorch_cuda_docker -t kubeflow/pytorch:1.0-cuda10.0-cudnn7-runtime + ``` + 4. To deploy your job we recommend using official [kubeflow documentation](https://www.kubeflow.org/docs/guides/components/pytorch/). Each example has example yaml files for two versions of apis. Feel free to modify them, e.g. image or number of GPUs. From b0d19e84bcb761b5abe399aed659bd96c138b79d Mon Sep 17 00:00:00 2001 From: Jiaxin Shan Date: Tue, 24 Nov 2020 10:54:06 -0800 Subject: [PATCH 2/3] Update examples/README.md Co-authored-by: Ce Gao --- examples/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index db7f15c7c..4024990b1 100644 --- a/examples/README.md +++ b/examples/README.md @@ -33,6 +33,5 @@ Use the pytorch Docker Image provided by Kubeflow. ``` docker build ./pytorch_cuda_docker -t kubeflow/pytorch:1.0-cuda10.0-cudnn7-runtime - ``` 4. To deploy your job we recommend using official [kubeflow documentation](https://www.kubeflow.org/docs/guides/components/pytorch/). Each example has example yaml files for two versions of apis. Feel free to modify them, e.g. image or number of GPUs. From e5c0342b2ae7bf4609b3aba39ac24f74ae25406f Mon Sep 17 00:00:00 2001 From: Jiaxin Shan Date: Tue, 24 Nov 2020 10:54:13 -0800 Subject: [PATCH 3/3] Update examples/README.md Co-authored-by: Ce Gao --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index 4024990b1..f77bad42d 100644 --- a/examples/README.md +++ b/examples/README.md @@ -32,6 +32,6 @@ or Use the pytorch Docker Image provided by Kubeflow. ``` - docker build ./pytorch_cuda_docker -t kubeflow/pytorch:1.0-cuda10.0-cudnn7-runtime +docker build ./pytorch_cuda_docker -t kubeflow/pytorch:1.0-cuda10.0-cudnn7-runtime 4. To deploy your job we recommend using official [kubeflow documentation](https://www.kubeflow.org/docs/guides/components/pytorch/). Each example has example yaml files for two versions of apis. Feel free to modify them, e.g. image or number of GPUs.