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

replace old image with broken download links #1275

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ To complete this Quickstart __via the CLI__, you will need to have the Run:ai CL
``` bash
runai config project team-a
runai submit-dist pytorch dist-train1 --workers=2 -g 0.1 \
-i gcr.io/kubeflow-ci/pytorch-dist-mnist_test:1.0
-i kubeflow/pytorch-dist-mnist:latest
```

!!! Note
Expand All @@ -73,7 +73,7 @@ To complete this Quickstart __via the CLI__, you will need to have the Run:ai CL
``` bash
runai project set team-a
runai distributed submit dist-train1 --framework PyTorch \
-i gcr.io/kubeflow-ci/pytorch-dist-mnist_test:1.0 --workers 2
-i kubeflow/pytorch-dist-mnist:latest --workers 2
--gpu-request-type portion --gpu-portion-request 0.1 --gpu-devices-request 1 --cpu-memory-request 100M
```
!!! Note
Expand All @@ -85,7 +85,7 @@ To complete this Quickstart __via the CLI__, you will need to have the Run:ai CL
* You should already have `Cluster`, `Project` and a `start from scratch` `Template` selected.
* Under `Workload architecture` select `Distributed` and choose `PyTorch`. Set the distributed training configuration to `Workers & master`.
* Enter `train1` as the name and press __CONTINUE__.
* Select __NEW ENVIRONMENT__. Enter `pytorch-dt` as the name and `gcr.io/kubeflow-ci/pytorch-dist-mnist_test:1.0` as the image. Then select __CREATE ENVIRONMENT__.
* Select __NEW ENVIRONMENT__. Enter `pytorch-dt` as the name and `kubeflow/pytorch-dist-mnist:latest` as the image. Then select __CREATE ENVIRONMENT__.
* When the previous screen comes up, under `Compute resource` enter 2 workers and select `small-fraction` as the Compute resource.
* Select __CONTINUE__ and then __CREATE TRAINING__.

Expand All @@ -109,7 +109,7 @@ To complete this Quickstart __via the CLI__, you will need to have the Run:ai CL
"gpuDevicesRequest": 1,
"gpuPortionRequest": 0.1
},
"image": "gcr.io/kubeflow-ci/pytorch-dist-mnist_test:1.0",
"image": "kubeflow/pytorch-dist-mnist:latest",
"numWorkers": 2, \ # (5)
"distributedFramework": "PyTorch" \ # (6)
}
Expand Down
Loading