-
Notifications
You must be signed in to change notification settings - Fork 0
/
hp.py
56 lines (56 loc) · 842 Bytes
/
hp.py
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
hp = {
"hid_dim": 128,
"phone_dim": 40,
"reconstr_weight": 30,
"sr": 16000,
"n_fft": 1024,
"n_mels": 128,
"hop_size": 256,
"win_size": 1024,
"epochs": 75,
"batch_size": 64,
"corpus_name": "common_voice_jp",
"learning_rate": 1e-4,
"phone_set": [
"I",
"N",
"U",
"a",
"b",
"by",
"ch",
"cl",
"d",
"dy",
"e",
"f",
"g",
"gy",
"h",
"hy",
"i",
"j",
"k",
"ky",
"m",
"my",
"n",
"ny",
"o",
"p",
"pau",
"py",
"r",
"ry",
"s",
"sh",
"t",
"ts",
"ty",
"u",
"v",
"w",
"y",
"z",
],
}