Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- Data/config.json +98 -0
- __pycache__/attentions.cpython-39.pyc +0 -0
- __pycache__/commons.cpython-39.pyc +0 -0
- __pycache__/config.cpython-39.pyc +0 -0
- __pycache__/emo_gen.cpython-39.pyc +0 -0
- __pycache__/infer.cpython-39.pyc +0 -0
- __pycache__/models.cpython-39.pyc +0 -0
- __pycache__/modules.cpython-39.pyc +0 -0
- __pycache__/presets.cpython-39.pyc +0 -0
- __pycache__/re_matching.cpython-39.pyc +0 -0
- __pycache__/transforms.cpython-39.pyc +0 -0
- __pycache__/utils.cpython-39.pyc +0 -0
- monotonic_align/__pycache__/__init__.cpython-39.pyc +0 -0
- monotonic_align/__pycache__/core.cpython-39.pyc +0 -0
- oldVersion/V101/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V101/__pycache__/models.cpython-39.pyc +0 -0
- oldVersion/V101/text/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V101/text/__pycache__/chinese.cpython-39.pyc +0 -0
- oldVersion/V101/text/__pycache__/cleaner.cpython-39.pyc +0 -0
- oldVersion/V101/text/__pycache__/symbols.cpython-39.pyc +0 -0
- oldVersion/V101/text/__pycache__/tone_sandhi.cpython-39.pyc +0 -0
- oldVersion/V110/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V110/__pycache__/models.cpython-39.pyc +0 -0
- oldVersion/V110/text/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V110/text/__pycache__/chinese.cpython-39.pyc +0 -0
- oldVersion/V110/text/__pycache__/cleaner.cpython-39.pyc +0 -0
- oldVersion/V110/text/__pycache__/japanese.cpython-39.pyc +0 -0
- oldVersion/V110/text/__pycache__/symbols.cpython-39.pyc +0 -0
- oldVersion/V110/text/__pycache__/tone_sandhi.cpython-39.pyc +0 -0
- oldVersion/V111/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V111/__pycache__/models.cpython-39.pyc +0 -0
- oldVersion/V111/text/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V111/text/__pycache__/chinese.cpython-39.pyc +0 -0
- oldVersion/V111/text/__pycache__/cleaner.cpython-39.pyc +0 -0
- oldVersion/V111/text/__pycache__/japanese.cpython-39.pyc +0 -0
- oldVersion/V111/text/__pycache__/symbols.cpython-39.pyc +0 -0
- oldVersion/V111/text/__pycache__/tone_sandhi.cpython-39.pyc +0 -0
- oldVersion/V111/text/fix/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V111/text/fix/__pycache__/japanese.cpython-39.pyc +0 -0
- oldVersion/V200/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V200/__pycache__/models.cpython-39.pyc +0 -0
- oldVersion/V200/text/__pycache__/__init__.cpython-39.pyc +0 -0
- oldVersion/V200/text/__pycache__/chinese.cpython-39.pyc +0 -0
- oldVersion/V200/text/__pycache__/cleaner.cpython-39.pyc +0 -0
- oldVersion/V200/text/__pycache__/english.cpython-39.pyc +0 -0
- oldVersion/V200/text/__pycache__/japanese.cpython-39.pyc +0 -0
- oldVersion/V200/text/__pycache__/symbols.cpython-39.pyc +0 -0
- oldVersion/V200/text/__pycache__/tone_sandhi.cpython-39.pyc +0 -0
- oldVersion/__pycache__/__init__.cpython-39.pyc +0 -0
- text/__pycache__/__init__.cpython-39.pyc +0 -0
Data/config.json
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train": {
|
3 |
+
"log_interval": 200,
|
4 |
+
"eval_interval": 1000,
|
5 |
+
"seed": 42,
|
6 |
+
"epochs": 1000,
|
7 |
+
"learning_rate": 0.0002,
|
8 |
+
"betas": [
|
9 |
+
0.8,
|
10 |
+
0.99
|
11 |
+
],
|
12 |
+
"eps": 1e-09,
|
13 |
+
"batch_size": 24,
|
14 |
+
"fp16_run": false,
|
15 |
+
"lr_decay": 0.99995,
|
16 |
+
"segment_size": 16384,
|
17 |
+
"init_lr_ratio": 1,
|
18 |
+
"warmup_epochs": 0,
|
19 |
+
"c_mel": 45,
|
20 |
+
"c_kl": 1.0,
|
21 |
+
"skip_optimizer": true
|
22 |
+
},
|
23 |
+
"data": {
|
24 |
+
"training_files": "filelists/TalkFlower_mix/train.list",
|
25 |
+
"validation_files": "filelists/TalkFlower_mix/val.list",
|
26 |
+
"max_wav_value": 32768.0,
|
27 |
+
"sampling_rate": 44100,
|
28 |
+
"filter_length": 2048,
|
29 |
+
"hop_length": 512,
|
30 |
+
"win_length": 2048,
|
31 |
+
"n_mel_channels": 128,
|
32 |
+
"mel_fmin": 0.0,
|
33 |
+
"mel_fmax": null,
|
34 |
+
"add_blank": true,
|
35 |
+
"n_speakers": 896,
|
36 |
+
"cleaned_text": true,
|
37 |
+
"spk2id": {
|
38 |
+
"TalkFlower_CNzh": 0,
|
39 |
+
"TalkFlower_JPja": 1,
|
40 |
+
"TalkFlower_USen": 2
|
41 |
+
}
|
42 |
+
},
|
43 |
+
"model": {
|
44 |
+
"use_spk_conditioned_encoder": true,
|
45 |
+
"use_noise_scaled_mas": true,
|
46 |
+
"use_mel_posterior_encoder": false,
|
47 |
+
"use_duration_discriminator": true,
|
48 |
+
"inter_channels": 192,
|
49 |
+
"hidden_channels": 192,
|
50 |
+
"filter_channels": 768,
|
51 |
+
"n_heads": 2,
|
52 |
+
"n_layers": 6,
|
53 |
+
"kernel_size": 3,
|
54 |
+
"p_dropout": 0.1,
|
55 |
+
"resblock": "1",
|
56 |
+
"resblock_kernel_sizes": [
|
57 |
+
3,
|
58 |
+
7,
|
59 |
+
11
|
60 |
+
],
|
61 |
+
"resblock_dilation_sizes": [
|
62 |
+
[
|
63 |
+
1,
|
64 |
+
3,
|
65 |
+
5
|
66 |
+
],
|
67 |
+
[
|
68 |
+
1,
|
69 |
+
3,
|
70 |
+
5
|
71 |
+
],
|
72 |
+
[
|
73 |
+
1,
|
74 |
+
3,
|
75 |
+
5
|
76 |
+
]
|
77 |
+
],
|
78 |
+
"upsample_rates": [
|
79 |
+
8,
|
80 |
+
8,
|
81 |
+
2,
|
82 |
+
2,
|
83 |
+
2
|
84 |
+
],
|
85 |
+
"upsample_initial_channel": 512,
|
86 |
+
"upsample_kernel_sizes": [
|
87 |
+
16,
|
88 |
+
16,
|
89 |
+
8,
|
90 |
+
2,
|
91 |
+
2
|
92 |
+
],
|
93 |
+
"n_layers_q": 3,
|
94 |
+
"use_spectral_norm": false,
|
95 |
+
"gin_channels": 256
|
96 |
+
},
|
97 |
+
"version": "2.1"
|
98 |
+
}
|
__pycache__/attentions.cpython-39.pyc
ADDED
Binary file (11.1 kB). View file
|
|
__pycache__/commons.cpython-39.pyc
ADDED
Binary file (5.89 kB). View file
|
|
__pycache__/config.cpython-39.pyc
ADDED
Binary file (7.22 kB). View file
|
|
__pycache__/emo_gen.cpython-39.pyc
ADDED
Binary file (5.08 kB). View file
|
|
__pycache__/infer.cpython-39.pyc
ADDED
Binary file (6.26 kB). View file
|
|
__pycache__/models.cpython-39.pyc
ADDED
Binary file (21.7 kB). View file
|
|
__pycache__/modules.cpython-39.pyc
ADDED
Binary file (13 kB). View file
|
|
__pycache__/presets.cpython-39.pyc
ADDED
Binary file (4.02 kB). View file
|
|
__pycache__/re_matching.cpython-39.pyc
ADDED
Binary file (2.53 kB). View file
|
|
__pycache__/transforms.cpython-39.pyc
ADDED
Binary file (3.9 kB). View file
|
|
__pycache__/utils.cpython-39.pyc
ADDED
Binary file (13.4 kB). View file
|
|
monotonic_align/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (735 Bytes). View file
|
|
monotonic_align/__pycache__/core.cpython-39.pyc
ADDED
Binary file (990 Bytes). View file
|
|
oldVersion/V101/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (1.69 kB). View file
|
|
oldVersion/V101/__pycache__/models.cpython-39.pyc
ADDED
Binary file (20.7 kB). View file
|
|
oldVersion/V101/text/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (1.52 kB). View file
|
|
oldVersion/V101/text/__pycache__/chinese.cpython-39.pyc
ADDED
Binary file (4.5 kB). View file
|
|
oldVersion/V101/text/__pycache__/cleaner.cpython-39.pyc
ADDED
Binary file (941 Bytes). View file
|
|
oldVersion/V101/text/__pycache__/symbols.cpython-39.pyc
ADDED
Binary file (1.48 kB). View file
|
|
oldVersion/V101/text/__pycache__/tone_sandhi.cpython-39.pyc
ADDED
Binary file (13.5 kB). View file
|
|
oldVersion/V110/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (1.95 kB). View file
|
|
oldVersion/V110/__pycache__/models.cpython-39.pyc
ADDED
Binary file (20.8 kB). View file
|
|
oldVersion/V110/text/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (1.57 kB). View file
|
|
oldVersion/V110/text/__pycache__/chinese.cpython-39.pyc
ADDED
Binary file (4.5 kB). View file
|
|
oldVersion/V110/text/__pycache__/cleaner.cpython-39.pyc
ADDED
Binary file (968 Bytes). View file
|
|
oldVersion/V110/text/__pycache__/japanese.cpython-39.pyc
ADDED
Binary file (12.6 kB). View file
|
|
oldVersion/V110/text/__pycache__/symbols.cpython-39.pyc
ADDED
Binary file (1.49 kB). View file
|
|
oldVersion/V110/text/__pycache__/tone_sandhi.cpython-39.pyc
ADDED
Binary file (13.5 kB). View file
|
|
oldVersion/V111/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (3.09 kB). View file
|
|
oldVersion/V111/__pycache__/models.cpython-39.pyc
ADDED
Binary file (20.8 kB). View file
|
|
oldVersion/V111/text/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (1.78 kB). View file
|
|
oldVersion/V111/text/__pycache__/chinese.cpython-39.pyc
ADDED
Binary file (4.5 kB). View file
|
|
oldVersion/V111/text/__pycache__/cleaner.cpython-39.pyc
ADDED
Binary file (1.24 kB). View file
|
|
oldVersion/V111/text/__pycache__/japanese.cpython-39.pyc
ADDED
Binary file (12.6 kB). View file
|
|
oldVersion/V111/text/__pycache__/symbols.cpython-39.pyc
ADDED
Binary file (1.49 kB). View file
|
|
oldVersion/V111/text/__pycache__/tone_sandhi.cpython-39.pyc
ADDED
Binary file (13.5 kB). View file
|
|
oldVersion/V111/text/fix/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (156 Bytes). View file
|
|
oldVersion/V111/text/fix/__pycache__/japanese.cpython-39.pyc
ADDED
Binary file (9 kB). View file
|
|
oldVersion/V200/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (2.06 kB). View file
|
|
oldVersion/V200/__pycache__/models.cpython-39.pyc
ADDED
Binary file (20.9 kB). View file
|
|
oldVersion/V200/text/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (2.19 kB). View file
|
|
oldVersion/V200/text/__pycache__/chinese.cpython-39.pyc
ADDED
Binary file (4.5 kB). View file
|
|
oldVersion/V200/text/__pycache__/cleaner.cpython-39.pyc
ADDED
Binary file (992 Bytes). View file
|
|
oldVersion/V200/text/__pycache__/english.cpython-39.pyc
ADDED
Binary file (7.16 kB). View file
|
|
oldVersion/V200/text/__pycache__/japanese.cpython-39.pyc
ADDED
Binary file (10.5 kB). View file
|
|
oldVersion/V200/text/__pycache__/symbols.cpython-39.pyc
ADDED
Binary file (1.49 kB). View file
|
|
oldVersion/V200/text/__pycache__/tone_sandhi.cpython-39.pyc
ADDED
Binary file (13.5 kB). View file
|
|
oldVersion/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (186 Bytes). View file
|
|
text/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (2.19 kB). View file
|
|