Skip to content

Commit 2908a62

Browse files
Update readme for volume flag (#176)
1 parent a8a2baf commit 2908a62

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ hyp create hyp-pytorch-job \
170170
--queue-name "training-queue" \
171171
--priority "high" \
172172
--max-retry 3 \
173-
--volumes '[data-vol, model-vol, checkpoint-vol]' \
174-
--persistent-volume-claims '[shared-data-pvc, model-registry-pvc]'
173+
--volume name=model-data,type=hostPath,mount_path=/data,path=/data \
174+
--volume name=training-output,type=pvc,mount_path=/data,claim_name=my-pvc,read_only=false
175175
```
176176
177177
Key required parameters explained:
@@ -180,8 +180,6 @@ Key required parameters explained:
180180
181181
--image: Docker image containing your training environment
182182
183-
This command starts a training job named test-pytorch-job. The --output-s3-uri specifies where the trained model artifacts will be stored, for example, s3://my-bucket/model-artifacts. Note this location, as you’ll need it for deploying the custom model.
184-
185183
### Inference
186184
187185
#### Creating a JumpstartModel Endpoint

0 commit comments

Comments
 (0)