generated from tu-studio/hpc-cluster-ml-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvc.yaml
102 lines (102 loc) · 2.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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/testing.py
- source/network/ravepqmf.py
- source/network/tcn.py
- source/network/CombinedModels.py
- source/network/latent.py
- source/network/core.py
- source/network/discriminator.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
- train.use_skip
- train.scheduler_rate
- train.use_tcn
- train.use_pqmf
- train.use_adversarial
- train.use_noise
- train.use_wn
- train.use_batch_norm
- train.use_residual
- train.activation
- train.stride
- train.dilate_conv
- train.use_latent
- metrics.loss_function
- metrics.combined_spectral_weight
- metrics.combined_mse_weight
- metrics.additional_mse
- metrics.additional_spec
- metrics.additional_stft
- metrics.additional_fft
- discriminator.lr
- discriminator.beta1
- discriminator.beta2
- discriminator.n_layers
- discriminator.n_channels
- discriminator.kernel_size
- discriminator.stride
- discriminator.padding
- gan.loss_type
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