generated from tu-studio/hpc-cluster-ml-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvc.yaml
68 lines (68 loc) · 1.62 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
66
67
68
stages:
# preprocess:
# cmd: python source/preprocess.py
# deps:
# - source/preprocess.py
# - source/network/dataset.py
# - data/raw/
# params:
# - preprocess.input_directory
# - preprocess.dry_output_directory
# - preprocess.short_output_directory
# - preprocess.wet_output_directory
# - preprocess.board_chunk_size
# - preprocess.sliding_mean_length
# - preprocess.noise_duration
# - preprocess.num_noises
# - preprocess.plate_reverb_path
# - preprocess.model_batch_size
# - train.input_size
# - general.sample_rate
# outs:
# - data/processed/
train:
cmd: python3 source/train.py
deps:
- source/train.py
- source/network/
- source/network/dataset.py
- source/network/metrics.py
- source/network/training.py
- source/network/evaluate.py
- source/network/ravepqmf.py
- data/processed/
params:
- general.random_seed
- general.sample_rate
- general.input_size
- train.input_file
- train.name
- train.device_request
- train.n_inputs
- train.n_bands
- train.latent_dim
- train.epochs
- train.batch_size
- train.kernel_size
- train.n_blocks
- train.dilation_growth
- train.n_channels
- train.lr
- train.use_kl
# outs:
# - model/checkpoints/
# export:
# cmd: python3 source/export.py
# deps:
# - source/export.py
# - model/checkpoints/
# params:
# - general.input_size
# - train.train_mode
# outs:
# - model/exports/
save_logs:
cmd: python3 source/utils/logs.py
outs:
- exp_logs/slurm
- exp_logs/tensorboard