NaNames commited on
Commit
a330065
·
1 Parent(s): ccab626

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +50 -15
config.json CHANGED
@@ -1,12 +1,15 @@
1
  {
2
  "train": {
3
- "log_interval": 200,
4
- "eval_interval": 1000,
5
  "seed": 1234,
6
  "epochs": 20000,
7
- "learning_rate": 2e-4,
8
- "betas": [0.8, 0.99],
9
- "eps": 1e-9,
 
 
 
10
  "batch_size": 16,
11
  "fp16_run": true,
12
  "lr_decay": 0.999875,
@@ -17,9 +20,11 @@
17
  "c_kl": 1.0
18
  },
19
  "data": {
20
- "training_files":"filelists/train_filelist.txt.cleaned",
21
- "validation_files":"filelists/val_filelist.txt.cleaned",
22
- "text_cleaners":["chinese_cleaners1"],
 
 
23
  "max_wav_value": 32768.0,
24
  "sampling_rate": 22050,
25
  "filter_length": 1024,
@@ -41,15 +46,45 @@
41
  "kernel_size": 3,
42
  "p_dropout": 0.1,
43
  "resblock": "1",
44
- "resblock_kernel_sizes": [3,7,11],
45
- "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
46
- "upsample_rates": [8,8,2,2],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  "upsample_initial_channel": 512,
48
- "upsample_kernel_sizes": [16,16,4,4],
 
 
 
 
 
49
  "n_layers_q": 3,
50
  "use_spectral_norm": false,
51
  "gin_channels": 256
52
  },
53
- "symbols": ["_", ";", ":", ",", "。", "!", "?", "-", "“", "”", "《", "》", "、", "(", ")", "…", "—", " ", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "1", "2", "3", "4", "5", "0", "", ""],
54
- "speakers": ["派蒙"]
55
- }
 
1
  {
2
  "train": {
3
+ "log_interval": 10,
4
+ "eval_interval": 100,
5
  "seed": 1234,
6
  "epochs": 20000,
7
+ "learning_rate": 0.0002,
8
+ "betas": [
9
+ 0.8,
10
+ 0.99
11
+ ],
12
+ "eps": 1e-09,
13
  "batch_size": 16,
14
  "fp16_run": true,
15
  "lr_decay": 0.999875,
 
20
  "c_kl": 1.0
21
  },
22
  "data": {
23
+ "training_files": "final_annotation_train.txt",
24
+ "validation_files": "final_annotation_val.txt",
25
+ "text_cleaners": [
26
+ "chinese_cleaners1"
27
+ ],
28
  "max_wav_value": 32768.0,
29
  "sampling_rate": 22050,
30
  "filter_length": 1024,
 
46
  "kernel_size": 3,
47
  "p_dropout": 0.1,
48
  "resblock": "1",
49
+ "resblock_kernel_sizes": [
50
+ 3,
51
+ 7,
52
+ 11
53
+ ],
54
+ "resblock_dilation_sizes": [
55
+ [
56
+ 1,
57
+ 3,
58
+ 5
59
+ ],
60
+ [
61
+ 1,
62
+ 3,
63
+ 5
64
+ ],
65
+ [
66
+ 1,
67
+ 3,
68
+ 5
69
+ ]
70
+ ],
71
+ "upsample_rates": [
72
+ 8,
73
+ 8,
74
+ 2,
75
+ 2
76
+ ],
77
  "upsample_initial_channel": 512,
78
+ "upsample_kernel_sizes": [
79
+ 16,
80
+ 16,
81
+ 4,
82
+ 4
83
+ ],
84
  "n_layers_q": 3,
85
  "use_spectral_norm": false,
86
  "gin_channels": 256
87
  },
88
+ "symbols": ["_", ";", ":", ",", "。", "!", "?", "-", "“", "”", "《", "》", "、", "(", ")", "B", "P", "…", "—", "~", ".", "\\", "·", "『", "』", "・", " ", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"],
89
+ "speakers": ["\u9ed1\u5854"]
90
+ }