-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvc.yaml
65 lines (65 loc) · 1.67 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
stages:
train_model:
cmd: python ./train.py --config ./configs/base_params.yml
deps:
- ./configs/base_params.yml
- ./configs/prepare_data.yml
- ./point_cloud_cls
- ./nn_model
- ./train.py
- ./train_data/simple-shapes
params:
- train_param.py:
- DataParams
- OptimizerParams
- ModelParams
- TrainParams
- SchedulerParams
- SEED
outs:
- ./exp
prepare_data:
cmd: python ./prepare_data.py --config ./configs/prepare_data.yml
deps:
- ./configs/prepare_data.yml
- ./prepare_data.py
outs:
- ./train_data/simple-shapes
export_model:
cmd: python ./export_model.py --config ./configs/export_model.yml
deps:
- ./configs/export_model.yml
- ./configs/prepare_data.yml
- ./exp/lightning_logs/version_0/checkpoints/epoch=49.ckpt
- ./export_model.py
- ./point_cloud_cls
outs:
- ./inference-data:
cache: false
test_prepare_data:
cmd: python ./prepare_data.py --config ./configs/prepare_test_data.yml
deps:
- ./configs/prepare_test_data.yml
- ./dataset/test-simple-dataset.7z
- ./prepare_data.py
outs:
- ./train_data/small-test-shapes
test_train_model:
cmd: python ./train.py --config ./configs/base_params.yml --data_config ./configs/prepare_test_data.yml --exp ./exp_test_run --fast_dev_run
deps:
- ./configs/base_params.yml
- ./point_cloud_cls
- ./nn_model
- ./train.py
- ./train_data/small-test-shapes
params:
- train_param.py:
- DataParams
- OptimizerParams
- ModelParams
- TrainParams
- SchedulerParams
- SEED
outs:
- ./exp_test_run:
cache: false