shahules786
commited on
Commit
•
ae9ace7
1
Parent(s):
e6c06d7
model files
Browse files- config.yaml +98 -0
- pytorch_model.ckpt +3 -0
config.yaml
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
model:
|
2 |
+
_target_: mayavoz.models.demucs.Demucs
|
3 |
+
num_channels: 1
|
4 |
+
resample: 4
|
5 |
+
sampling_rate: 16000
|
6 |
+
encoder_decoder:
|
7 |
+
depth: 4
|
8 |
+
initial_output_channels: 64
|
9 |
+
kernel_size: 8
|
10 |
+
stride: 4
|
11 |
+
growth_factor: 2
|
12 |
+
glu: true
|
13 |
+
lstm:
|
14 |
+
bidirectional: true
|
15 |
+
num_layers: 2
|
16 |
+
dataset:
|
17 |
+
_target_: mayavoz.data.dataset.MayaDataset
|
18 |
+
root_dir: /scratch/c.sistc3/MS-SNSD/DNS20
|
19 |
+
name: dns-2020
|
20 |
+
duration: 5
|
21 |
+
stride: 2
|
22 |
+
sampling_rate: 16000
|
23 |
+
batch_size: 32
|
24 |
+
min_valid_minutes: 25.0
|
25 |
+
files:
|
26 |
+
train_clean: CleanSpeech_training
|
27 |
+
test_clean: CleanSpeech_testing
|
28 |
+
train_noisy: NoisySpeech_training
|
29 |
+
test_noisy: NoisySpeech_testing
|
30 |
+
optimizer:
|
31 |
+
_target_: torch.optim.Adam
|
32 |
+
lr: 0.001
|
33 |
+
betas:
|
34 |
+
- 0.9
|
35 |
+
- 0.999
|
36 |
+
eps: 1.0e-08
|
37 |
+
weight_decay: 0
|
38 |
+
amsgrad: false
|
39 |
+
hyperparameters:
|
40 |
+
loss: mae
|
41 |
+
metric:
|
42 |
+
- stoi
|
43 |
+
- pesq
|
44 |
+
lr: 0.0003
|
45 |
+
ReduceLr_patience: 10
|
46 |
+
Early_stop: false
|
47 |
+
ReduceLr_factor: 0.5
|
48 |
+
min_lr: 1.0e-07
|
49 |
+
EarlyStopping_patience: 10
|
50 |
+
trainer:
|
51 |
+
_target_: pytorch_lightning.Trainer
|
52 |
+
accelerator: gpu
|
53 |
+
accumulate_grad_batches: 1
|
54 |
+
amp_backend: native
|
55 |
+
auto_lr_find: false
|
56 |
+
auto_scale_batch_size: false
|
57 |
+
auto_select_gpus: true
|
58 |
+
benchmark: false
|
59 |
+
check_val_every_n_epoch: 1
|
60 |
+
detect_anomaly: false
|
61 |
+
deterministic: false
|
62 |
+
devices: 1
|
63 |
+
enable_checkpointing: true
|
64 |
+
enable_model_summary: true
|
65 |
+
enable_progress_bar: true
|
66 |
+
fast_dev_run: false
|
67 |
+
gpus: null
|
68 |
+
gradient_clip_val: 0
|
69 |
+
gradient_clip_algorithm: norm
|
70 |
+
ipus: null
|
71 |
+
limit_predict_batches: 1.0
|
72 |
+
limit_test_batches: 1.0
|
73 |
+
limit_train_batches: 1.0
|
74 |
+
limit_val_batches: 1.0
|
75 |
+
log_every_n_steps: 50
|
76 |
+
max_epochs: 100
|
77 |
+
max_steps: -1
|
78 |
+
max_time: null
|
79 |
+
min_epochs: 1
|
80 |
+
min_steps: null
|
81 |
+
move_metrics_to_cpu: false
|
82 |
+
multiple_trainloader_mode: max_size_cycle
|
83 |
+
num_nodes: 1
|
84 |
+
num_processes: 1
|
85 |
+
num_sanity_val_steps: 2
|
86 |
+
overfit_batches: 0.0
|
87 |
+
precision: 32
|
88 |
+
profiler: null
|
89 |
+
reload_dataloaders_every_n_epochs: 0
|
90 |
+
replace_sampler_ddp: true
|
91 |
+
strategy: null
|
92 |
+
sync_batchnorm: false
|
93 |
+
tpu_cores: null
|
94 |
+
track_grad_norm: -1
|
95 |
+
val_check_interval: 1.0
|
96 |
+
mlflow:
|
97 |
+
experiment_name: shahules/mayavoz
|
98 |
+
run_name: demucs-dns20
|
pytorch_model.ckpt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52f6c4fcb0dbe32e03ae55ac09a3715d875dd928be5a7fd72accd9523d919409
|
3 |
+
size 182201101
|