-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsample_config.json
62 lines (62 loc) · 1.26 KB
/
sample_config.json
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
{
"dataset": {
"acoustic_param": {
"alpha": 0.410,
"dtype": "float32",
"f0_ceil": 800,
"f0_floor": 71,
"fft_length": 1024,
"frame_period": 5,
"order": 8,
"pad_second": 0,
"sampling_rate": 24000,
"threshold_db": 25
},
"input_glob": "./input_feature/*.npy",
"target_glob": "./target_feature/*.npy",
"indexes_glob": "./aligned_indexes/*.npy",
"in_features": [
"mc"
],
"out_features": [
"mc"
],
"train_crop_size": 512,
"input_global_noise": 0.01,
"input_local_noise": 0.01,
"target_global_noise": 0.01,
"target_local_noise": 0.01,
"seed": 0,
"num_test": 5
},
"model": {
"in_channels": 9,
"out_channels": 9,
"generator_base_channels": 8,
"generator_extensive_layers": 8,
"discriminator_base_channels": 1,
"discriminator_extensive_layers": 5,
"weak_discriminator": true
},
"loss": {
"adversarial": 0,
"mse": 100
},
"project": {
"name": "",
"tags": []
},
"train": {
"batchsize": 8,
"gpu": 0,
"log_iteration": 250,
"snapshot_iteration": 10000,
"stop_iteration": null,
"optimizer": {
"alpha": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"name": "Adam"
}
}
}