-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvc.yaml
40 lines (40 loc) · 905 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
stages:
install_deps:
cmd: python3 -m pip install -r requirements.txt
download_dataset:
cmd: python src/data_handler.py
deps:
- config.yaml
- src/logs_handler.py
- src/data_handler.py
- src/yaml_handler.py
outs:
- data
optimize_hyperparameters:
cmd: python src/hyperparameters.py & python src/hyperparameters.py # Laucn two asynchronous python instances
deps:
- config.yaml
- data
- src/hyperparameters.py
- src/logs_handler.py
- src/data_handler.py
- src/yaml_handler.py
- src/ConvNet.py
- src/layers.py
outs:
- .hyperparameters.db
- model_hp.yaml
train_model:
cmd: python src/main.py
deps:
- config.yaml
- model_hp.yaml
- data
- src/main.py
- src/logs_handler.py
- src/data_handler.py
- src/yaml_handler.py
- src/ConvNet.py
- src/layers.py
outs:
- models