mattricesound commited on
Commit
2cc2105
·
1 Parent(s): 6a5decf

Update chain inference

Browse files
cfg/exp/chain_inference.yaml CHANGED
@@ -26,8 +26,6 @@ effects_to_remove:
26
  datamodule:
27
  batch_size: 16
28
  num_workers: 8
29
- train_dataset: None
30
- val_dataset: None
31
 
32
  ckpts:
33
  RandomPedalboardDistortion: "ckpts/distortion.ckpt"
 
26
  datamodule:
27
  batch_size: 16
28
  num_workers: 8
 
 
29
 
30
  ckpts:
31
  RandomPedalboardDistortion: "ckpts/distortion.ckpt"
cfg/exp/chain_inference_aug.yaml ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # @package _global_
2
+ defaults:
3
+ - override /model: demucs
4
+ - override /effects: all
5
+ seed: 12345
6
+ sample_rate: 48000
7
+ chunk_size: 262144 # 5.5s
8
+ logs_dir: "./logs"
9
+ render_files: False
10
+ render_root: "/scratch/EffectSet"
11
+ accelerator: "gpu"
12
+ log_audio: True
13
+ # Effects
14
+ num_kept_effects: [0,0] # [min, max]
15
+ num_removed_effects: [0,5] # [min, max]
16
+ shuffle_kept_effects: True
17
+ shuffle_removed_effects: True
18
+ num_classes: 5
19
+ effects_to_keep:
20
+ effects_to_remove:
21
+ - distortion
22
+ - compressor
23
+ - reverb
24
+ - chorus
25
+ - delay
26
+ datamodule:
27
+ batch_size: 16
28
+ num_workers: 8
29
+
30
+ ckpts:
31
+ RandomPedalboardDistortion: "ckpts/distortion_aug.ckpt"
32
+ RandomPedalboardCompressor: "ckpts/compressor_aug.ckpt"
33
+ RandomPedalboardReverb: "ckpts/reverb_aug.ckpt"
34
+ RandomPedalboardChorus: "ckpts/chorus_aug.ckpt"
35
+ RandomPedalboardDelay: "ckpts/delay_aug.ckpt"
36
+ inference_effects_ordering:
37
+ - "RandomPedalboardDistortion"
38
+ - "RandomPedalboardCompressor"
39
+ - "RandomPedalboardReverb"
40
+ - "RandomPedalboardChorus"
41
+ - "RandomPedalboardDelay"
42
+ num_bins: 1025