Create dvc.yaml
This commit is contained in:
parent
abb213675e
commit
0f254aa5fa
29
dvc.yaml
Normal file
29
dvc.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
stages:
|
||||||
|
prepare_data:
|
||||||
|
cmd: python ./IUM_2.py
|
||||||
|
deps:
|
||||||
|
- create-dataset.py
|
||||||
|
- covtype.csv
|
||||||
|
outs:
|
||||||
|
- forest_train.csv
|
||||||
|
- forest_test.csv
|
||||||
|
- forest_val.csv
|
||||||
|
|
||||||
|
train_model:
|
||||||
|
cmd: python ./model.py
|
||||||
|
deps:
|
||||||
|
- model.py
|
||||||
|
- forest_train.csv
|
||||||
|
- forest_test.csv
|
||||||
|
- forest_val.csv
|
||||||
|
outs:
|
||||||
|
- model.pth
|
||||||
|
|
||||||
|
evaluate_model:
|
||||||
|
cmd: python ./prediction.py
|
||||||
|
deps:
|
||||||
|
- prediction.py
|
||||||
|
- model.pth
|
||||||
|
- forest_test.csv
|
||||||
|
outs:
|
||||||
|
- predictions.txt
|
Loading…
Reference in New Issue
Block a user