-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdvc.yaml
46 lines (46 loc) · 940 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: python source/preprocess.py
deps:
- source/preprocess.py
- data/raw/
params:
- general.input_size
- preprocess.input_file
- preprocess.target_file
- preprocess.test_split
outs:
- data/processed/
train:
cmd: python source/train.py
deps:
- source/train.py
- source/model.py
- data/processed/
params:
- general.input_size
- general.random_seed
- model.conv1d_strides
- model.conv1d_filters
- model.hidden_units
- train.batch_size
- train.learning_rate
- train.epochs
- train.device_request
outs:
- models/checkpoints/
export:
cmd: python source/export.py
deps:
- source/export.py
- models/checkpoints/
params:
- general.input_size
outs:
- models/exports/
save_logs:
cmd: python source/utils/logs.py
deps:
- source/utils/logs.py
outs:
- exp_logs/