forked from Xiaobin-Rong/SEtrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfg_train.toml
51 lines (40 loc) · 801 Bytes
/
cfg_train.toml
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
[network_config]
[DDP]
world_size = 2 # number of available gpus
[optimizer]
lr = 1e-3
[loss]
loss_func = 'hybrid'
[listener]
listener_sr = 16000
[FFT]
n_fft = 512
hop_length = 256
win_length = 512
[train_dataset]
train_folder = '/data/ssd0/xiaobin.rong/Datasets/DNS3/train'
shuffle = false
num_tot = 0
wav_len = 0
[train_dataloader]
batch_size = 16
num_workers = 4
drop_last = true
pin_memory = true
[validation_dataset]
train_folder = '/data/ssd0/xiaobin.rong/Datasets/DNS3/dev'
shuffle = false
num_tot = 0
wav_len = 0
[validation_dataloader]
batch_size = 1
num_workers = 4
pin_memory = true
[trainer]
epochs = 120
save_checkpoint_interval = 1
clip_grad_norm_value = 3.0
exp_path = '/data/ssd0/xiaobin.rong/project_se/DNS3/exp_dpcrn'
resume = false
resume_datetime = ''
resume_step = 0