forked from tu-studio/hpc-cluster-ml-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvc.yaml
46 lines (46 loc) · 890 Bytes
/
dvc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
stages:
preprocess:
cmd: python3 source/preprocess.py
deps:
- source/preprocess.py
- data/raw/
params:
- preprocess.input_file
- preprocess.target_file
- preprocess.input_size
- preprocess.test_split
- preprocess.output_dir
outs:
- data/processed/
train:
cmd: python3 source/train.py
deps:
- source/train.py
- source/model.py
- data/processed/
params:
- train.name
- train.batch_size
- train.epochs
- train.train_mode
- train.device
outs:
- models/checkpoints/
- dvclive/
- tensorboard/
export:
cmd: python3 source/export.py
deps:
- source/export.py
- models/checkpoints/
params:
- preprocess.input_size
- train.name
- train.train_mode
outs:
- models/exports/
metrics:
- dvclive/metrics.json
plots:
- dvclive/plots/metrics:
x: step