generated from bstollnitz/ml-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5fc04a
commit 605d629
Showing
2 changed files
with
46 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
az ml workspace create -g aus-rg -n dec-ws | ||
az configure --defaults group=aus-rg workspace=dec-ws | ||
az ml compute create -f codegen_model_comparison/cloud/compute.yaml | ||
az ml environment create -f codegen_model_comparison/cloud/environment/environment.yaml | ||
|
||
az ml data create --name functions --version 1 --path codegen_model_comparison/data/dataset_hf_train_val.pkl --type uri_file | ||
az ml job create -f codegen_model_comparison/cloud/pipeline.yaml | ||
|
||
# After the job finishes | ||
# az ml job list -r 1 | ||
|
||
# # input the child job name from the previous step | ||
# az ml job download --all -n <job name> |