ahassoun commited on
Commit
a153039
1 Parent(s): 1b925a6

Upload 293 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. TTS/.DS_Store +0 -0
  2. TTS/.models.json +882 -0
  3. TTS/VERSION +1 -0
  4. TTS/__init__.py +6 -0
  5. TTS/api.py +473 -0
  6. TTS/bin/__init__.py +0 -0
  7. TTS/bin/collect_env_info.py +48 -0
  8. TTS/bin/compute_attention_masks.py +165 -0
  9. TTS/bin/compute_embeddings.py +197 -0
  10. TTS/bin/compute_statistics.py +96 -0
  11. TTS/bin/eval_encoder.py +88 -0
  12. TTS/bin/extract_tts_spectrograms.py +286 -0
  13. TTS/bin/find_unique_chars.py +45 -0
  14. TTS/bin/find_unique_phonemes.py +74 -0
  15. TTS/bin/remove_silence_using_vad.py +124 -0
  16. TTS/bin/resample.py +90 -0
  17. TTS/bin/synthesize.py +466 -0
  18. TTS/bin/train_encoder.py +319 -0
  19. TTS/bin/train_tts.py +71 -0
  20. TTS/bin/train_vocoder.py +77 -0
  21. TTS/bin/tune_wavegrad.py +103 -0
  22. TTS/config/__init__.py +132 -0
  23. TTS/config/shared_configs.py +268 -0
  24. TTS/cs_api.py +338 -0
  25. TTS/encoder/README.md +18 -0
  26. TTS/encoder/__init__.py +0 -0
  27. TTS/encoder/configs/base_encoder_config.py +61 -0
  28. TTS/encoder/configs/emotion_encoder_config.py +12 -0
  29. TTS/encoder/configs/speaker_encoder_config.py +11 -0
  30. TTS/encoder/dataset.py +147 -0
  31. TTS/encoder/losses.py +226 -0
  32. TTS/encoder/models/base_encoder.py +161 -0
  33. TTS/encoder/models/lstm.py +99 -0
  34. TTS/encoder/models/resnet.py +198 -0
  35. TTS/encoder/requirements.txt +2 -0
  36. TTS/encoder/utils/__init__.py +0 -0
  37. TTS/encoder/utils/generic_utils.py +182 -0
  38. TTS/encoder/utils/io.py +38 -0
  39. TTS/encoder/utils/prepare_voxceleb.py +219 -0
  40. TTS/encoder/utils/training.py +99 -0
  41. TTS/encoder/utils/visual.py +50 -0
  42. TTS/model.py +59 -0
  43. TTS/server/README.md +18 -0
  44. TTS/server/__init__.py +0 -0
  45. TTS/server/conf.json +12 -0
  46. TTS/server/server.py +258 -0
  47. TTS/server/static/coqui-log-green-TTS.png +0 -0
  48. TTS/server/templates/details.html +131 -0
  49. TTS/server/templates/index.html +154 -0
  50. TTS/tts/__init__.py +0 -0
TTS/.DS_Store ADDED
Binary file (6.15 kB). View file
 
TTS/.models.json ADDED
@@ -0,0 +1,882 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tts_models": {
3
+ "multilingual": {
4
+ "multi-dataset": {
5
+ "your_tts": {
6
+ "description": "Your TTS model accompanying the paper https://arxiv.org/abs/2112.02418",
7
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.10.1_models/tts_models--multilingual--multi-dataset--your_tts.zip",
8
+ "default_vocoder": null,
9
+ "commit": "e9a1953e",
10
+ "license": "CC BY-NC-ND 4.0",
11
+ "contact": "egolge@coqui.ai"
12
+ },
13
+ "bark": {
14
+ "description": "🐶 Bark TTS model released by suno-ai. You can find the original implementation in https://github.com/suno-ai/bark.",
15
+ "hf_url": [
16
+ "https://coqui.gateway.scarf.sh/hf/bark/coarse_2.pt",
17
+ "https://coqui.gateway.scarf.sh/hf/bark/fine_2.pt",
18
+ "https://coqui.gateway.scarf.sh/hf/bark/text_2.pt",
19
+ "https://coqui.gateway.scarf.sh/hf/bark/config.json"
20
+ ],
21
+ "default_vocoder": null,
22
+ "commit": "e9a1953e",
23
+ "license": "MIT",
24
+ "contact": "https://www.suno.ai/"
25
+ }
26
+ }
27
+ },
28
+ "bg": {
29
+ "cv": {
30
+ "vits": {
31
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--bg--cv--vits.zip",
32
+ "default_vocoder": null,
33
+ "commit": null,
34
+ "author": "@NeonGeckoCom",
35
+ "license": "bsd-3-clause"
36
+ }
37
+ }
38
+ },
39
+ "cs": {
40
+ "cv": {
41
+ "vits": {
42
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--cs--cv--vits.zip",
43
+ "default_vocoder": null,
44
+ "commit": null,
45
+ "author": "@NeonGeckoCom",
46
+ "license": "bsd-3-clause"
47
+ }
48
+ }
49
+ },
50
+ "da": {
51
+ "cv": {
52
+ "vits": {
53
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--da--cv--vits.zip",
54
+ "default_vocoder": null,
55
+ "commit": null,
56
+ "author": "@NeonGeckoCom",
57
+ "license": "bsd-3-clause"
58
+ }
59
+ }
60
+ },
61
+ "et": {
62
+ "cv": {
63
+ "vits": {
64
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--et--cv--vits.zip",
65
+ "default_vocoder": null,
66
+ "commit": null,
67
+ "author": "@NeonGeckoCom",
68
+ "license": "bsd-3-clause"
69
+ }
70
+ }
71
+ },
72
+ "ga": {
73
+ "cv": {
74
+ "vits": {
75
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--ga--cv--vits.zip",
76
+ "default_vocoder": null,
77
+ "commit": null,
78
+ "author": "@NeonGeckoCom",
79
+ "license": "bsd-3-clause"
80
+ }
81
+ }
82
+ },
83
+ "en": {
84
+ "ek1": {
85
+ "tacotron2": {
86
+ "description": "EK1 en-rp tacotron2 by NMStoker",
87
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ek1--tacotron2.zip",
88
+ "default_vocoder": "vocoder_models/en/ek1/wavegrad",
89
+ "commit": "c802255",
90
+ "license": "apache 2.0"
91
+ }
92
+ },
93
+ "ljspeech": {
94
+ "tacotron2-DDC": {
95
+ "description": "Tacotron2 with Double Decoder Consistency.",
96
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ljspeech--tacotron2-DDC.zip",
97
+ "default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
98
+ "commit": "bae2ad0f",
99
+ "author": "Eren Gölge @erogol",
100
+ "license": "apache 2.0",
101
+ "contact": "egolge@coqui.com"
102
+ },
103
+ "tacotron2-DDC_ph": {
104
+ "description": "Tacotron2 with Double Decoder Consistency with phonemes.",
105
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ljspeech--tacotron2-DDC_ph.zip",
106
+ "default_vocoder": "vocoder_models/en/ljspeech/univnet",
107
+ "commit": "3900448",
108
+ "author": "Eren Gölge @erogol",
109
+ "license": "apache 2.0",
110
+ "contact": "egolge@coqui.com"
111
+ },
112
+ "glow-tts": {
113
+ "description": "",
114
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ljspeech--glow-tts.zip",
115
+ "stats_file": null,
116
+ "default_vocoder": "vocoder_models/en/ljspeech/multiband-melgan",
117
+ "commit": "",
118
+ "author": "Eren Gölge @erogol",
119
+ "license": "MPL",
120
+ "contact": "egolge@coqui.com"
121
+ },
122
+ "speedy-speech": {
123
+ "description": "Speedy Speech model trained on LJSpeech dataset using the Alignment Network for learning the durations.",
124
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ljspeech--speedy-speech.zip",
125
+ "stats_file": null,
126
+ "default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
127
+ "commit": "4581e3d",
128
+ "author": "Eren Gölge @erogol",
129
+ "license": "apache 2.0",
130
+ "contact": "egolge@coqui.com"
131
+ },
132
+ "tacotron2-DCA": {
133
+ "description": "",
134
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ljspeech--tacotron2-DCA.zip",
135
+ "default_vocoder": "vocoder_models/en/ljspeech/multiband-melgan",
136
+ "commit": "",
137
+ "author": "Eren Gölge @erogol",
138
+ "license": "MPL",
139
+ "contact": "egolge@coqui.com"
140
+ },
141
+ "vits": {
142
+ "description": "VITS is an End2End TTS model trained on LJSpeech dataset with phonemes.",
143
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ljspeech--vits.zip",
144
+ "default_vocoder": null,
145
+ "commit": "3900448",
146
+ "author": "Eren Gölge @erogol",
147
+ "license": "apache 2.0",
148
+ "contact": "egolge@coqui.com"
149
+ },
150
+ "vits--neon": {
151
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--en--ljspeech--vits.zip",
152
+ "default_vocoder": null,
153
+ "author": "@NeonGeckoCom",
154
+ "license": "bsd-3-clause",
155
+ "contact": null,
156
+ "commit": null
157
+ },
158
+ "fast_pitch": {
159
+ "description": "FastPitch model trained on LJSpeech using the Aligner Network",
160
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--ljspeech--fast_pitch.zip",
161
+ "default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
162
+ "commit": "b27b3ba",
163
+ "author": "Eren Gölge @erogol",
164
+ "license": "apache 2.0",
165
+ "contact": "egolge@coqui.com"
166
+ },
167
+ "overflow": {
168
+ "description": "Overflow model trained on LJSpeech",
169
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.10.0_models/tts_models--en--ljspeech--overflow.zip",
170
+ "default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
171
+ "commit": "3b1a28f",
172
+ "author": "Eren Gölge @erogol",
173
+ "license": "apache 2.0",
174
+ "contact": "egolge@coqui.ai"
175
+ },
176
+ "neural_hmm": {
177
+ "description": "Neural HMM model trained on LJSpeech",
178
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.11.0_models/tts_models--en--ljspeech--neural_hmm.zip",
179
+ "default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
180
+ "commit": "3b1a28f",
181
+ "author": "Shivam Metha @shivammehta25",
182
+ "license": "apache 2.0",
183
+ "contact": "d83ee8fe45e3c0d776d4a865aca21d7c2ac324c4"
184
+ }
185
+ },
186
+ "vctk": {
187
+ "vits": {
188
+ "description": "VITS End2End TTS model trained on VCTK dataset with 109 different speakers with EN accent.",
189
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--vctk--vits.zip",
190
+ "default_vocoder": null,
191
+ "commit": "3900448",
192
+ "author": "Eren @erogol",
193
+ "license": "apache 2.0",
194
+ "contact": "egolge@coqui.ai"
195
+ },
196
+ "fast_pitch": {
197
+ "description": "FastPitch model trained on VCTK dataseset.",
198
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--vctk--fast_pitch.zip",
199
+ "default_vocoder": null,
200
+ "commit": "bdab788d",
201
+ "author": "Eren @erogol",
202
+ "license": "CC BY-NC-ND 4.0",
203
+ "contact": "egolge@coqui.ai"
204
+ }
205
+ },
206
+ "sam": {
207
+ "tacotron-DDC": {
208
+ "description": "Tacotron2 with Double Decoder Consistency trained with Aceenture's Sam dataset.",
209
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--en--sam--tacotron-DDC.zip",
210
+ "default_vocoder": "vocoder_models/en/sam/hifigan_v2",
211
+ "commit": "bae2ad0f",
212
+ "author": "Eren Gölge @erogol",
213
+ "license": "apache 2.0",
214
+ "contact": "egolge@coqui.com"
215
+ }
216
+ },
217
+ "blizzard2013": {
218
+ "capacitron-t2-c50": {
219
+ "description": "Capacitron additions to Tacotron 2 with Capacity at 50 as in https://arxiv.org/pdf/1906.03402.pdf",
220
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.7.0_models/tts_models--en--blizzard2013--capacitron-t2-c50.zip",
221
+ "commit": "d6284e7",
222
+ "default_vocoder": "vocoder_models/en/blizzard2013/hifigan_v2",
223
+ "author": "Adam Froghyar @a-froghyar",
224
+ "license": "apache 2.0",
225
+ "contact": "adamfroghyar@gmail.com"
226
+ },
227
+ "capacitron-t2-c150_v2": {
228
+ "description": "Capacitron additions to Tacotron 2 with Capacity at 150 as in https://arxiv.org/pdf/1906.03402.pdf",
229
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.7.1_models/tts_models--en--blizzard2013--capacitron-t2-c150_v2.zip",
230
+ "commit": "a67039d",
231
+ "default_vocoder": "vocoder_models/en/blizzard2013/hifigan_v2",
232
+ "author": "Adam Froghyar @a-froghyar",
233
+ "license": "apache 2.0",
234
+ "contact": "adamfroghyar@gmail.com"
235
+ }
236
+ },
237
+ "multi-dataset": {
238
+ "tortoise-v2": {
239
+ "description": "Tortoise tts model https://github.com/neonbjb/tortoise-tts",
240
+ "github_rls_url": [
241
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/autoregressive.pth",
242
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/clvp2.pth",
243
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/cvvp.pth",
244
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/diffusion_decoder.pth",
245
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/rlg_auto.pth",
246
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/rlg_diffuser.pth",
247
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/vocoder.pth",
248
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/mel_norms.pth",
249
+ "https://coqui.gateway.scarf.sh/v0.14.1_models/config.json"
250
+ ],
251
+ "commit": "c1875f6",
252
+ "default_vocoder": null,
253
+ "author": "@neonbjb - James Betker, @manmay-nakhashi Manmay Nakhashi",
254
+ "license": "apache 2.0"
255
+ }
256
+ },
257
+ "jenny": {
258
+ "jenny": {
259
+ "description": "VITS model trained with Jenny(Dioco) dataset. Named as Jenny as demanded by the license. Original URL for the model https://www.kaggle.com/datasets/noml4u/tts-models--en--jenny-dioco--vits",
260
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.14.0_models/tts_models--en--jenny--jenny.zip",
261
+ "default_vocoder": null,
262
+ "commit": "ba40a1c",
263
+ "license": "custom - see https://github.com/dioco-group/jenny-tts-dataset#important",
264
+ "author": "@noml4u"
265
+ }
266
+ }
267
+ },
268
+ "es": {
269
+ "mai": {
270
+ "tacotron2-DDC": {
271
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--es--mai--tacotron2-DDC.zip",
272
+ "default_vocoder": "vocoder_models/universal/libri-tts/fullband-melgan",
273
+ "commit": "",
274
+ "author": "Eren Gölge @erogol",
275
+ "license": "MPL",
276
+ "contact": "egolge@coqui.com"
277
+ }
278
+ },
279
+ "css10": {
280
+ "vits": {
281
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--es--css10--vits.zip",
282
+ "default_vocoder": null,
283
+ "commit": null,
284
+ "author": "@NeonGeckoCom",
285
+ "license": "bsd-3-clause"
286
+ }
287
+ }
288
+ },
289
+ "fr": {
290
+ "mai": {
291
+ "tacotron2-DDC": {
292
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--fr--mai--tacotron2-DDC.zip",
293
+ "default_vocoder": "vocoder_models/universal/libri-tts/fullband-melgan",
294
+ "commit": null,
295
+ "author": "Eren Gölge @erogol",
296
+ "license": "MPL",
297
+ "contact": "egolge@coqui.com"
298
+ }
299
+ },
300
+ "css10": {
301
+ "vits": {
302
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--fr--css10--vits.zip",
303
+ "default_vocoder": null,
304
+ "commit": null,
305
+ "author": "@NeonGeckoCom",
306
+ "license": "bsd-3-clause"
307
+ }
308
+ }
309
+ },
310
+ "uk": {
311
+ "mai": {
312
+ "glow-tts": {
313
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--uk--mai--glow-tts.zip",
314
+ "author": "@robinhad",
315
+ "commit": "bdab788d",
316
+ "license": "MIT",
317
+ "contact": "",
318
+ "default_vocoder": "vocoder_models/uk/mai/multiband-melgan"
319
+ },
320
+ "vits": {
321
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--uk--mai--vits.zip",
322
+ "default_vocoder": null,
323
+ "commit": null,
324
+ "author": "@NeonGeckoCom",
325
+ "license": "bsd-3-clause"
326
+ }
327
+ }
328
+ },
329
+ "zh-CN": {
330
+ "baker": {
331
+ "tacotron2-DDC-GST": {
332
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--zh-CN--baker--tacotron2-DDC-GST.zip",
333
+ "commit": "unknown",
334
+ "author": "@kirianguiller",
335
+ "license": "apache 2.0",
336
+ "default_vocoder": null
337
+ }
338
+ }
339
+ },
340
+ "nl": {
341
+ "mai": {
342
+ "tacotron2-DDC": {
343
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--nl--mai--tacotron2-DDC.zip",
344
+ "author": "@r-dh",
345
+ "license": "apache 2.0",
346
+ "default_vocoder": "vocoder_models/nl/mai/parallel-wavegan",
347
+ "stats_file": null,
348
+ "commit": "540d811"
349
+ }
350
+ },
351
+ "css10": {
352
+ "vits": {
353
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--nl--css10--vits.zip",
354
+ "default_vocoder": null,
355
+ "commit": null,
356
+ "author": "@NeonGeckoCom",
357
+ "license": "bsd-3-clause"
358
+ }
359
+ }
360
+ },
361
+ "de": {
362
+ "thorsten": {
363
+ "tacotron2-DCA": {
364
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--de--thorsten--tacotron2-DCA.zip",
365
+ "default_vocoder": "vocoder_models/de/thorsten/fullband-melgan",
366
+ "author": "@thorstenMueller",
367
+ "license": "apache 2.0",
368
+ "commit": "unknown"
369
+ },
370
+ "vits": {
371
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.7.0_models/tts_models--de--thorsten--vits.zip",
372
+ "default_vocoder": null,
373
+ "author": "@thorstenMueller",
374
+ "license": "apache 2.0",
375
+ "commit": "unknown"
376
+ },
377
+ "tacotron2-DDC": {
378
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--de--thorsten--tacotron2-DDC.zip",
379
+ "default_vocoder": "vocoder_models/de/thorsten/hifigan_v1",
380
+ "description": "Thorsten-Dec2021-22k-DDC",
381
+ "author": "@thorstenMueller",
382
+ "license": "apache 2.0",
383
+ "commit": "unknown"
384
+ }
385
+ },
386
+ "css10": {
387
+ "vits-neon": {
388
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--de--css10--vits.zip",
389
+ "default_vocoder": null,
390
+ "author": "@NeonGeckoCom",
391
+ "license": "bsd-3-clause",
392
+ "commit": null
393
+ }
394
+ }
395
+ },
396
+ "ja": {
397
+ "kokoro": {
398
+ "tacotron2-DDC": {
399
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--ja--kokoro--tacotron2-DDC.zip",
400
+ "default_vocoder": "vocoder_models/ja/kokoro/hifigan_v1",
401
+ "description": "Tacotron2 with Double Decoder Consistency trained with Kokoro Speech Dataset.",
402
+ "author": "@kaiidams",
403
+ "license": "apache 2.0",
404
+ "commit": "401fbd89"
405
+ }
406
+ }
407
+ },
408
+ "tr": {
409
+ "common-voice": {
410
+ "glow-tts": {
411
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--tr--common-voice--glow-tts.zip",
412
+ "default_vocoder": "vocoder_models/tr/common-voice/hifigan",
413
+ "license": "MIT",
414
+ "description": "Turkish GlowTTS model using an unknown speaker from the Common-Voice dataset.",
415
+ "author": "Fatih Akademi",
416
+ "commit": null
417
+ }
418
+ }
419
+ },
420
+ "it": {
421
+ "mai_female": {
422
+ "glow-tts": {
423
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--it--mai_female--glow-tts.zip",
424
+ "default_vocoder": null,
425
+ "description": "GlowTTS model as explained on https://github.com/coqui-ai/TTS/issues/1148.",
426
+ "author": "@nicolalandro",
427
+ "license": "apache 2.0",
428
+ "commit": null
429
+ },
430
+ "vits": {
431
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--it--mai_female--vits.zip",
432
+ "default_vocoder": null,
433
+ "description": "GlowTTS model as explained on https://github.com/coqui-ai/TTS/issues/1148.",
434
+ "author": "@nicolalandro",
435
+ "license": "apache 2.0",
436
+ "commit": null
437
+ }
438
+ },
439
+ "mai_male": {
440
+ "glow-tts": {
441
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--it--mai_male--glow-tts.zip",
442
+ "default_vocoder": null,
443
+ "description": "GlowTTS model as explained on https://github.com/coqui-ai/TTS/issues/1148.",
444
+ "author": "@nicolalandro",
445
+ "license": "apache 2.0",
446
+ "commit": null
447
+ },
448
+ "vits": {
449
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/tts_models--it--mai_male--vits.zip",
450
+ "default_vocoder": null,
451
+ "description": "GlowTTS model as explained on https://github.com/coqui-ai/TTS/issues/1148.",
452
+ "author": "@nicolalandro",
453
+ "license": "apache 2.0",
454
+ "commit": null
455
+ }
456
+ }
457
+ },
458
+ "ewe": {
459
+ "openbible": {
460
+ "vits": {
461
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.2_models/tts_models--ewe--openbible--vits.zip",
462
+ "default_vocoder": null,
463
+ "license": "CC-BY-SA 4.0",
464
+ "description": "Original work (audio and text) by Biblica available for free at www.biblica.com and open.bible.",
465
+ "author": "@coqui_ai",
466
+ "commit": "1b22f03"
467
+ }
468
+ }
469
+ },
470
+ "hau": {
471
+ "openbible": {
472
+ "vits": {
473
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.2_models/tts_models--hau--openbible--vits.zip",
474
+ "default_vocoder": null,
475
+ "license": "CC-BY-SA 4.0",
476
+ "description": "Original work (audio and text) by Biblica available for free at www.biblica.com and open.bible.",
477
+ "author": "@coqui_ai",
478
+ "commit": "1b22f03"
479
+ }
480
+ }
481
+ },
482
+ "lin": {
483
+ "openbible": {
484
+ "vits": {
485
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.2_models/tts_models--lin--openbible--vits.zip",
486
+ "default_vocoder": null,
487
+ "license": "CC-BY-SA 4.0",
488
+ "description": "Original work (audio and text) by Biblica available for free at www.biblica.com and open.bible.",
489
+ "author": "@coqui_ai",
490
+ "commit": "1b22f03"
491
+ }
492
+ }
493
+ },
494
+ "tw_akuapem": {
495
+ "openbible": {
496
+ "vits": {
497
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.2_models/tts_models--tw_akuapem--openbible--vits.zip",
498
+ "default_vocoder": null,
499
+ "license": "CC-BY-SA 4.0",
500
+ "description": "Original work (audio and text) by Biblica available for free at www.biblica.com and open.bible.",
501
+ "author": "@coqui_ai",
502
+ "commit": "1b22f03"
503
+ }
504
+ }
505
+ },
506
+ "tw_asante": {
507
+ "openbible": {
508
+ "vits": {
509
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.2_models/tts_models--tw_asante--openbible--vits.zip",
510
+ "default_vocoder": null,
511
+ "license": "CC-BY-SA 4.0",
512
+ "description": "Original work (audio and text) by Biblica available for free at www.biblica.com and open.bible.",
513
+ "author": "@coqui_ai",
514
+ "commit": "1b22f03"
515
+ }
516
+ }
517
+ },
518
+ "yor": {
519
+ "openbible": {
520
+ "vits": {
521
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.2_models/tts_models--yor--openbible--vits.zip",
522
+ "default_vocoder": null,
523
+ "license": "CC-BY-SA 4.0",
524
+ "description": "Original work (audio and text) by Biblica available for free at www.biblica.com and open.bible.",
525
+ "author": "@coqui_ai",
526
+ "commit": "1b22f03"
527
+ }
528
+ }
529
+ },
530
+ "hu": {
531
+ "css10": {
532
+ "vits": {
533
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--hu--css10--vits.zip",
534
+ "default_vocoder": null,
535
+ "commit": null,
536
+ "author": "@NeonGeckoCom",
537
+ "license": "bsd-3-clause"
538
+ }
539
+ }
540
+ },
541
+ "el": {
542
+ "cv": {
543
+ "vits": {
544
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--el--cv--vits.zip",
545
+ "default_vocoder": null,
546
+ "commit": null,
547
+ "author": "@NeonGeckoCom",
548
+ "license": "bsd-3-clause"
549
+ }
550
+ }
551
+ },
552
+ "fi": {
553
+ "css10": {
554
+ "vits": {
555
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--fi--css10--vits.zip",
556
+ "default_vocoder": null,
557
+ "commit": null,
558
+ "author": "@NeonGeckoCom",
559
+ "license": "bsd-3-clause"
560
+ }
561
+ }
562
+ },
563
+ "hr": {
564
+ "cv": {
565
+ "vits": {
566
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--hr--cv--vits.zip",
567
+ "default_vocoder": null,
568
+ "commit": null,
569
+ "author": "@NeonGeckoCom",
570
+ "license": "bsd-3-clause"
571
+ }
572
+ }
573
+ },
574
+ "lt": {
575
+ "cv": {
576
+ "vits": {
577
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--lt--cv--vits.zip",
578
+ "default_vocoder": null,
579
+ "commit": null,
580
+ "author": "@NeonGeckoCom",
581
+ "license": "bsd-3-clause"
582
+ }
583
+ }
584
+ },
585
+ "lv": {
586
+ "cv": {
587
+ "vits": {
588
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--lv--cv--vits.zip",
589
+ "default_vocoder": null,
590
+ "commit": null,
591
+ "author": "@NeonGeckoCom",
592
+ "license": "bsd-3-clause"
593
+ }
594
+ }
595
+ },
596
+ "mt": {
597
+ "cv": {
598
+ "vits": {
599
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--mt--cv--vits.zip",
600
+ "default_vocoder": null,
601
+ "commit": null,
602
+ "author": "@NeonGeckoCom",
603
+ "license": "bsd-3-clause"
604
+ }
605
+ }
606
+ },
607
+ "pl": {
608
+ "mai_female": {
609
+ "vits": {
610
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--pl--mai_female--vits.zip",
611
+ "default_vocoder": null,
612
+ "commit": null,
613
+ "author": "@NeonGeckoCom",
614
+ "license": "bsd-3-clause"
615
+ }
616
+ }
617
+ },
618
+ "pt": {
619
+ "cv": {
620
+ "vits": {
621
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--pt--cv--vits.zip",
622
+ "default_vocoder": null,
623
+ "commit": null,
624
+ "author": "@NeonGeckoCom",
625
+ "license": "bsd-3-clause"
626
+ }
627
+ }
628
+ },
629
+ "ro": {
630
+ "cv": {
631
+ "vits": {
632
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--ro--cv--vits.zip",
633
+ "default_vocoder": null,
634
+ "commit": null,
635
+ "author": "@NeonGeckoCom",
636
+ "license": "bsd-3-clause"
637
+ }
638
+ }
639
+ },
640
+ "sk": {
641
+ "cv": {
642
+ "vits": {
643
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--sk--cv--vits.zip",
644
+ "default_vocoder": null,
645
+ "commit": null,
646
+ "author": "@NeonGeckoCom",
647
+ "license": "bsd-3-clause"
648
+ }
649
+ }
650
+ },
651
+ "sl": {
652
+ "cv": {
653
+ "vits": {
654
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--sl--cv--vits.zip",
655
+ "default_vocoder": null,
656
+ "commit": null,
657
+ "author": "@NeonGeckoCom",
658
+ "license": "bsd-3-clause"
659
+ }
660
+ }
661
+ },
662
+ "sv": {
663
+ "cv": {
664
+ "vits": {
665
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/tts_models--sv--cv--vits.zip",
666
+ "default_vocoder": null,
667
+ "commit": null,
668
+ "author": "@NeonGeckoCom",
669
+ "license": "bsd-3-clause"
670
+ }
671
+ }
672
+ },
673
+ "ca": {
674
+ "custom": {
675
+ "vits": {
676
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.10.1_models/tts_models--ca--custom--vits.zip",
677
+ "default_vocoder": null,
678
+ "commit": null,
679
+ "description": " It is trained from zero with 101460 utterances consisting of 257 speakers, approx 138 hours of speech. We used three datasets;\nFestcat and Google Catalan TTS (both TTS datasets) and also a part of Common Voice 8. It is trained with TTS v0.8.0.\nhttps://github.com/coqui-ai/TTS/discussions/930#discussioncomment-4466345",
680
+ "author": "@gullabi",
681
+ "license": "CC-BY-4.0"
682
+ }
683
+ }
684
+ },
685
+ "fa": {
686
+ "custom": {
687
+ "glow-tts": {
688
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.10.1_models/tts_models--fa--custom--glow-tts.zip",
689
+ "default_vocoder": null,
690
+ "commit": null,
691
+ "description": "persian-tts-female-glow_tts model for text to speech purposes. Single-speaker female voice Trained on persian-tts-dataset-famale. \nThis model has no compatible vocoder thus the output quality is not very good. \nDataset: https://www.kaggle.com/datasets/magnoliasis/persian-tts-dataset-famale.",
692
+ "author": "@karim23657",
693
+ "license": "CC-BY-4.0"
694
+ }
695
+ }
696
+ },
697
+ "bn": {
698
+ "custom": {
699
+ "vits-male": {
700
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.13.3_models/tts_models--bn--custom--vits_male.zip",
701
+ "default_vocoder": null,
702
+ "commit": null,
703
+ "description": "Single speaker Bangla male model. For more information -> https://github.com/mobassir94/comprehensive-bangla-tts",
704
+ "author": "@mobassir94",
705
+ "license": "Apache 2.0"
706
+ },
707
+ "vits-female": {
708
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.13.3_models/tts_models--bn--custom--vits_female.zip",
709
+ "default_vocoder": null,
710
+ "commit": null,
711
+ "description": "Single speaker Bangla female model. For more information -> https://github.com/mobassir94/comprehensive-bangla-tts",
712
+ "author": "@mobassir94",
713
+ "license": "Apache 2.0"
714
+ }
715
+ }
716
+ }
717
+ },
718
+ "vocoder_models": {
719
+ "universal": {
720
+ "libri-tts": {
721
+ "wavegrad": {
722
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--universal--libri-tts--wavegrad.zip",
723
+ "commit": "ea976b0",
724
+ "author": "Eren Gölge @erogol",
725
+ "license": "MPL",
726
+ "contact": "egolge@coqui.com"
727
+ },
728
+ "fullband-melgan": {
729
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--universal--libri-tts--fullband-melgan.zip",
730
+ "commit": "4132240",
731
+ "author": "Eren Gölge @erogol",
732
+ "license": "MPL",
733
+ "contact": "egolge@coqui.com"
734
+ }
735
+ }
736
+ },
737
+ "en": {
738
+ "ek1": {
739
+ "wavegrad": {
740
+ "description": "EK1 en-rp wavegrad by NMStoker",
741
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--en--ek1--wavegrad.zip",
742
+ "commit": "c802255",
743
+ "license": "apache 2.0"
744
+ }
745
+ },
746
+ "ljspeech": {
747
+ "multiband-melgan": {
748
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--en--ljspeech--multiband-melgan.zip",
749
+ "commit": "ea976b0",
750
+ "author": "Eren Gölge @erogol",
751
+ "license": "MPL",
752
+ "contact": "egolge@coqui.com"
753
+ },
754
+ "hifigan_v2": {
755
+ "description": "HiFiGAN_v2 LJSpeech vocoder from https://arxiv.org/abs/2010.05646.",
756
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--en--ljspeech--hifigan_v2.zip",
757
+ "commit": "bae2ad0f",
758
+ "author": "@erogol",
759
+ "license": "apache 2.0",
760
+ "contact": "egolge@coqui.ai"
761
+ },
762
+ "univnet": {
763
+ "description": "UnivNet model finetuned on TacotronDDC_ph spectrograms for better compatibility.",
764
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--en--ljspeech--univnet_v2.zip",
765
+ "commit": "4581e3d",
766
+ "author": "Eren @erogol",
767
+ "license": "apache 2.0",
768
+ "contact": "egolge@coqui.ai"
769
+ }
770
+ },
771
+ "blizzard2013": {
772
+ "hifigan_v2": {
773
+ "description": "HiFiGAN_v2 LJSpeech vocoder from https://arxiv.org/abs/2010.05646.",
774
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.7.0_models/vocoder_models--en--blizzard2013--hifigan_v2.zip",
775
+ "commit": "d6284e7",
776
+ "author": "Adam Froghyar @a-froghyar",
777
+ "license": "apache 2.0",
778
+ "contact": "adamfroghyar@gmail.com"
779
+ }
780
+ },
781
+ "vctk": {
782
+ "hifigan_v2": {
783
+ "description": "Finetuned and intended to be used with tts_models/en/vctk/sc-glow-tts",
784
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--en--vctk--hifigan_v2.zip",
785
+ "commit": "2f07160",
786
+ "author": "Edresson Casanova",
787
+ "license": "apache 2.0",
788
+ "contact": ""
789
+ }
790
+ },
791
+ "sam": {
792
+ "hifigan_v2": {
793
+ "description": "Finetuned and intended to be used with tts_models/en/sam/tacotron_DDC",
794
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--en--sam--hifigan_v2.zip",
795
+ "commit": "2f07160",
796
+ "author": "Eren Gölge @erogol",
797
+ "license": "apache 2.0",
798
+ "contact": "egolge@coqui.ai"
799
+ }
800
+ }
801
+ },
802
+ "nl": {
803
+ "mai": {
804
+ "parallel-wavegan": {
805
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--nl--mai--parallel-wavegan.zip",
806
+ "author": "@r-dh",
807
+ "license": "apache 2.0",
808
+ "commit": "unknown"
809
+ }
810
+ }
811
+ },
812
+ "de": {
813
+ "thorsten": {
814
+ "wavegrad": {
815
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--de--thorsten--wavegrad.zip",
816
+ "author": "@thorstenMueller",
817
+ "license": "apache 2.0",
818
+ "commit": "unknown"
819
+ },
820
+ "fullband-melgan": {
821
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--de--thorsten--fullband-melgan.zip",
822
+ "author": "@thorstenMueller",
823
+ "license": "apache 2.0",
824
+ "commit": "unknown"
825
+ },
826
+ "hifigan_v1": {
827
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.8.0_models/vocoder_models--de--thorsten--hifigan_v1.zip",
828
+ "description": "HifiGAN vocoder model for Thorsten Neutral Dec2021 22k Samplerate Tacotron2 DDC model",
829
+ "author": "@thorstenMueller",
830
+ "license": "apache 2.0",
831
+ "commit": "unknown"
832
+ }
833
+ }
834
+ },
835
+ "ja": {
836
+ "kokoro": {
837
+ "hifigan_v1": {
838
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--ja--kokoro--hifigan_v1.zip",
839
+ "description": "HifiGAN model trained for kokoro dataset by @kaiidams",
840
+ "author": "@kaiidams",
841
+ "license": "apache 2.0",
842
+ "commit": "3900448"
843
+ }
844
+ }
845
+ },
846
+ "uk": {
847
+ "mai": {
848
+ "multiband-melgan": {
849
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--uk--mai--multiband-melgan.zip",
850
+ "author": "@robinhad",
851
+ "commit": "bdab788d",
852
+ "license": "MIT",
853
+ "contact": ""
854
+ }
855
+ }
856
+ },
857
+ "tr": {
858
+ "common-voice": {
859
+ "hifigan": {
860
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.6.1_models/vocoder_models--tr--common-voice--hifigan.zip",
861
+ "description": "HifiGAN model using an unknown speaker from the Common-Voice dataset.",
862
+ "author": "Fatih Akademi",
863
+ "license": "MIT",
864
+ "commit": null
865
+ }
866
+ }
867
+ }
868
+ },
869
+ "voice_conversion_models": {
870
+ "multilingual": {
871
+ "vctk": {
872
+ "freevc24": {
873
+ "github_rls_url": "https://coqui.gateway.scarf.sh/v0.13.0_models/voice_conversion_models--multilingual--vctk--freevc24.zip",
874
+ "description": "FreeVC model trained on VCTK dataset from https://github.com/OlaWod/FreeVC",
875
+ "author": "Jing-Yi Li @OlaWod",
876
+ "license": "MIT",
877
+ "commit": null
878
+ }
879
+ }
880
+ }
881
+ }
882
+ }
TTS/VERSION ADDED
@@ -0,0 +1 @@
 
 
1
+ 0.16.3
TTS/__init__.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ with open(os.path.join(os.path.dirname(__file__), "VERSION"), "r", encoding="utf-8") as f:
4
+ version = f.read().strip()
5
+
6
+ __version__ = version
TTS/api.py ADDED
@@ -0,0 +1,473 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import tempfile
2
+ import warnings
3
+ from pathlib import Path
4
+ from typing import Union
5
+
6
+ import numpy as np
7
+ from torch import nn
8
+
9
+ from TTS.cs_api import CS_API
10
+ from TTS.utils.audio.numpy_transforms import save_wav
11
+ from TTS.utils.manage import ModelManager
12
+ from TTS.utils.synthesizer import Synthesizer
13
+
14
+
15
+ class TTS(nn.Module):
16
+ """TODO: Add voice conversion and Capacitron support."""
17
+
18
+ def __init__(
19
+ self,
20
+ model_name: str = None,
21
+ model_path: str = None,
22
+ config_path: str = None,
23
+ vocoder_path: str = None,
24
+ vocoder_config_path: str = None,
25
+ progress_bar: bool = True,
26
+ cs_api_model: str = "XTTS",
27
+ gpu=False,
28
+ ):
29
+ """🐸TTS python interface that allows to load and use the released models.
30
+
31
+ Example with a multi-speaker model:
32
+ >>> from TTS.api import TTS
33
+ >>> tts = TTS(TTS.list_models()[0])
34
+ >>> wav = tts.tts("This is a test! This is also a test!!", speaker=tts.speakers[0], language=tts.languages[0])
35
+ >>> tts.tts_to_file(text="Hello world!", speaker=tts.speakers[0], language=tts.languages[0], file_path="output.wav")
36
+
37
+ Example with a single-speaker model:
38
+ >>> tts = TTS(model_name="tts_models/de/thorsten/tacotron2-DDC", progress_bar=False, gpu=False)
39
+ >>> tts.tts_to_file(text="Ich bin eine Testnachricht.", file_path="output.wav")
40
+
41
+ Example loading a model from a path:
42
+ >>> tts = TTS(model_path="/path/to/checkpoint_100000.pth", config_path="/path/to/config.json", progress_bar=False, gpu=False)
43
+ >>> tts.tts_to_file(text="Ich bin eine Testnachricht.", file_path="output.wav")
44
+
45
+ Example voice cloning with YourTTS in English, French and Portuguese:
46
+ >>> tts = TTS(model_name="tts_models/multilingual/multi-dataset/your_tts", progress_bar=False, gpu=True)
47
+ >>> tts.tts_to_file("This is voice cloning.", speaker_wav="my/cloning/audio.wav", language="en", file_path="thisisit.wav")
48
+ >>> tts.tts_to_file("C'est le clonage de la voix.", speaker_wav="my/cloning/audio.wav", language="fr", file_path="thisisit.wav")
49
+ >>> tts.tts_to_file("Isso é clonagem de voz.", speaker_wav="my/cloning/audio.wav", language="pt", file_path="thisisit.wav")
50
+
51
+ Example Fairseq TTS models (uses ISO language codes in https://dl.fbaipublicfiles.com/mms/tts/all-tts-languages.html):
52
+ >>> tts = TTS(model_name="tts_models/eng/fairseq/vits", progress_bar=False, gpu=True)
53
+ >>> tts.tts_to_file("This is a test.", file_path="output.wav")
54
+
55
+ Args:
56
+ model_name (str, optional): Model name to load. You can list models by ```tts.models```. Defaults to None.
57
+ model_path (str, optional): Path to the model checkpoint. Defaults to None.
58
+ config_path (str, optional): Path to the model config. Defaults to None.
59
+ vocoder_path (str, optional): Path to the vocoder checkpoint. Defaults to None.
60
+ vocoder_config_path (str, optional): Path to the vocoder config. Defaults to None.
61
+ progress_bar (bool, optional): Whether to pring a progress bar while downloading a model. Defaults to True.
62
+ cs_api_model (str, optional): Name of the model to use for the Coqui Studio API. Available models are
63
+ "XTTS", "XTTS-multilingual", "V1". You can also use `TTS.cs_api.CS_API" for more control.
64
+ Defaults to "XTTS".
65
+ gpu (bool, optional): Enable/disable GPU. Some models might be too slow on CPU. Defaults to False.
66
+ """
67
+ super().__init__()
68
+ self.manager = ModelManager(models_file=self.get_models_file_path(), progress_bar=progress_bar, verbose=False)
69
+
70
+ self.synthesizer = None
71
+ self.voice_converter = None
72
+ self.csapi = None
73
+ self.cs_api_model = cs_api_model
74
+ self.model_name = None
75
+
76
+ if gpu:
77
+ warnings.warn("`gpu` will be deprecated. Please use `tts.to(device)` instead.")
78
+
79
+ if model_name is not None:
80
+ if "tts_models" in model_name or "coqui_studio" in model_name:
81
+ self.load_tts_model_by_name(model_name, gpu)
82
+ elif "voice_conversion_models" in model_name:
83
+ self.load_vc_model_by_name(model_name, gpu)
84
+
85
+ if model_path:
86
+ self.load_tts_model_by_path(
87
+ model_path, config_path, vocoder_path=vocoder_path, vocoder_config=vocoder_config_path, gpu=gpu
88
+ )
89
+
90
+ @property
91
+ def models(self):
92
+ return self.manager.list_tts_models()
93
+
94
+ @property
95
+ def is_multi_speaker(self):
96
+ if hasattr(self.synthesizer.tts_model, "speaker_manager") and self.synthesizer.tts_model.speaker_manager:
97
+ return self.synthesizer.tts_model.speaker_manager.num_speakers > 1
98
+ return False
99
+
100
+ @property
101
+ def is_coqui_studio(self):
102
+ if self.model_name is None:
103
+ return False
104
+ return "coqui_studio" in self.model_name
105
+
106
+ @property
107
+ def is_multi_lingual(self):
108
+ if hasattr(self.synthesizer.tts_model, "language_manager") and self.synthesizer.tts_model.language_manager:
109
+ return self.synthesizer.tts_model.language_manager.num_languages > 1
110
+ return False
111
+
112
+ @property
113
+ def speakers(self):
114
+ if not self.is_multi_speaker:
115
+ return None
116
+ return self.synthesizer.tts_model.speaker_manager.speaker_names
117
+
118
+ @property
119
+ def languages(self):
120
+ if not self.is_multi_lingual:
121
+ return None
122
+ return self.synthesizer.tts_model.language_manager.language_names
123
+
124
+ @staticmethod
125
+ def get_models_file_path():
126
+ return Path(__file__).parent / ".models.json"
127
+
128
+ def list_models(self):
129
+ try:
130
+ csapi = CS_API(model=self.cs_api_model)
131
+ models = csapi.list_speakers_as_tts_models()
132
+ except ValueError as e:
133
+ print(e)
134
+ models = []
135
+ manager = ModelManager(models_file=TTS.get_models_file_path(), progress_bar=False, verbose=False)
136
+ return manager.list_tts_models() + models
137
+
138
+ def download_model_by_name(self, model_name: str):
139
+ model_path, config_path, model_item = self.manager.download_model(model_name)
140
+ if "fairseq" in model_name or (model_item is not None and isinstance(model_item["model_url"], list)):
141
+ # return model directory if there are multiple files
142
+ # we assume that the model knows how to load itself
143
+ return None, None, None, None, model_path
144
+ if model_item.get("default_vocoder") is None:
145
+ return model_path, config_path, None, None, None
146
+ vocoder_path, vocoder_config_path, _ = self.manager.download_model(model_item["default_vocoder"])
147
+ return model_path, config_path, vocoder_path, vocoder_config_path, None
148
+
149
+ def load_vc_model_by_name(self, model_name: str, gpu: bool = False):
150
+ """Load one of the voice conversion models by name.
151
+
152
+ Args:
153
+ model_name (str): Model name to load. You can list models by ```tts.models```.
154
+ gpu (bool, optional): Enable/disable GPU. Some models might be too slow on CPU. Defaults to False.
155
+ """
156
+ self.model_name = model_name
157
+ model_path, config_path, _, _, _ = self.download_model_by_name(model_name)
158
+ self.voice_converter = Synthesizer(vc_checkpoint=model_path, vc_config=config_path, use_cuda=gpu)
159
+
160
+ def load_tts_model_by_name(self, model_name: str, gpu: bool = False):
161
+ """Load one of 🐸TTS models by name.
162
+
163
+ Args:
164
+ model_name (str): Model name to load. You can list models by ```tts.models```.
165
+ gpu (bool, optional): Enable/disable GPU. Some models might be too slow on CPU. Defaults to False.
166
+
167
+ TODO: Add tests
168
+ """
169
+ self.synthesizer = None
170
+ self.csapi = None
171
+ self.model_name = model_name
172
+
173
+ if "coqui_studio" in model_name:
174
+ self.csapi = CS_API()
175
+ else:
176
+ model_path, config_path, vocoder_path, vocoder_config_path, model_dir = self.download_model_by_name(
177
+ model_name
178
+ )
179
+
180
+ # init synthesizer
181
+ # None values are fetch from the model
182
+ self.synthesizer = Synthesizer(
183
+ tts_checkpoint=model_path,
184
+ tts_config_path=config_path,
185
+ tts_speakers_file=None,
186
+ tts_languages_file=None,
187
+ vocoder_checkpoint=vocoder_path,
188
+ vocoder_config=vocoder_config_path,
189
+ encoder_checkpoint=None,
190
+ encoder_config=None,
191
+ model_dir=model_dir,
192
+ use_cuda=gpu,
193
+ )
194
+
195
+ def load_tts_model_by_path(
196
+ self, model_path: str, config_path: str, vocoder_path: str = None, vocoder_config: str = None, gpu: bool = False
197
+ ):
198
+ """Load a model from a path.
199
+
200
+ Args:
201
+ model_path (str): Path to the model checkpoint.
202
+ config_path (str): Path to the model config.
203
+ vocoder_path (str, optional): Path to the vocoder checkpoint. Defaults to None.
204
+ vocoder_config (str, optional): Path to the vocoder config. Defaults to None.
205
+ gpu (bool, optional): Enable/disable GPU. Some models might be too slow on CPU. Defaults to False.
206
+ """
207
+
208
+ self.synthesizer = Synthesizer(
209
+ tts_checkpoint=model_path,
210
+ tts_config_path=config_path,
211
+ tts_speakers_file=None,
212
+ tts_languages_file=None,
213
+ vocoder_checkpoint=vocoder_path,
214
+ vocoder_config=vocoder_config,
215
+ encoder_checkpoint=None,
216
+ encoder_config=None,
217
+ use_cuda=gpu,
218
+ )
219
+
220
+ def _check_arguments(
221
+ self,
222
+ speaker: str = None,
223
+ language: str = None,
224
+ speaker_wav: str = None,
225
+ emotion: str = None,
226
+ speed: float = None,
227
+ **kwargs,
228
+ ) -> None:
229
+ """Check if the arguments are valid for the model."""
230
+ if not self.is_coqui_studio:
231
+ # check for the coqui tts models
232
+ if self.is_multi_speaker and (speaker is None and speaker_wav is None):
233
+ raise ValueError("Model is multi-speaker but no `speaker` is provided.")
234
+ if self.is_multi_lingual and language is None:
235
+ raise ValueError("Model is multi-lingual but no `language` is provided.")
236
+ if not self.is_multi_speaker and speaker is not None and "voice_dir" not in kwargs:
237
+ raise ValueError("Model is not multi-speaker but `speaker` is provided.")
238
+ if not self.is_multi_lingual and language is not None:
239
+ raise ValueError("Model is not multi-lingual but `language` is provided.")
240
+ if not emotion is None and not speed is None:
241
+ raise ValueError("Emotion and speed can only be used with Coqui Studio models.")
242
+ else:
243
+ if emotion is None:
244
+ emotion = "Neutral"
245
+ if speed is None:
246
+ speed = 1.0
247
+ # check for the studio models
248
+ if speaker_wav is not None:
249
+ raise ValueError("Coqui Studio models do not support `speaker_wav` argument.")
250
+ if speaker is not None:
251
+ raise ValueError("Coqui Studio models do not support `speaker` argument.")
252
+ if language is not None and language != "en":
253
+ raise ValueError("Coqui Studio models currently support only `language=en` argument.")
254
+ if emotion not in ["Neutral", "Happy", "Sad", "Angry", "Dull"]:
255
+ raise ValueError(f"Emotion - `{emotion}` - must be one of `Neutral`, `Happy`, `Sad`, `Angry`, `Dull`.")
256
+
257
+ def tts_coqui_studio(
258
+ self,
259
+ text: str,
260
+ speaker_name: str = None,
261
+ language: str = None,
262
+ emotion: str = None,
263
+ speed: float = 1.0,
264
+ file_path: str = None,
265
+ ) -> Union[np.ndarray, str]:
266
+ """Convert text to speech using Coqui Studio models. Use `CS_API` class if you are only interested in the API.
267
+
268
+ Args:
269
+ text (str):
270
+ Input text to synthesize.
271
+ speaker_name (str, optional):
272
+ Speaker name from Coqui Studio. Defaults to None.
273
+ language (str): Language of the text. If None, the default language of the speaker is used. Language is only
274
+ supported by `XTTS-multilang` model. Currently supports en, de, es, fr, it, pt, pl. Defaults to "en".
275
+ emotion (str, optional):
276
+ Emotion of the speaker. One of "Neutral", "Happy", "Sad", "Angry", "Dull". Emotions are only available
277
+ with "V1" model. Defaults to None.
278
+ speed (float, optional):
279
+ Speed of the speech. Defaults to 1.0.
280
+ file_path (str, optional):
281
+ Path to save the output file. When None it returns the `np.ndarray` of waveform. Defaults to None.
282
+
283
+ Returns:
284
+ Union[np.ndarray, str]: Waveform of the synthesized speech or path to the output file.
285
+ """
286
+ speaker_name = self.model_name.split("/")[2]
287
+ if file_path is not None:
288
+ return self.csapi.tts_to_file(
289
+ text=text,
290
+ speaker_name=speaker_name,
291
+ language=language,
292
+ speed=speed,
293
+ emotion=emotion,
294
+ file_path=file_path,
295
+ )[0]
296
+ return self.csapi.tts(text=text, speaker_name=speaker_name, language=language, speed=speed, emotion=emotion)[0]
297
+
298
+ def tts(
299
+ self,
300
+ text: str,
301
+ speaker: str = None,
302
+ language: str = None,
303
+ speaker_wav: str = None,
304
+ emotion: str = None,
305
+ speed: float = None,
306
+ **kwargs,
307
+ ):
308
+ """Convert text to speech.
309
+
310
+ Args:
311
+ text (str):
312
+ Input text to synthesize.
313
+ speaker (str, optional):
314
+ Speaker name for multi-speaker. You can check whether loaded model is multi-speaker by
315
+ `tts.is_multi_speaker` and list speakers by `tts.speakers`. Defaults to None.
316
+ language (str): Language of the text. If None, the default language of the speaker is used. Language is only
317
+ supported by `XTTS-multilang` model. Currently supports en, de, es, fr, it, pt, pl. Defaults to "en".
318
+ speaker_wav (str, optional):
319
+ Path to a reference wav file to use for voice cloning with supporting models like YourTTS.
320
+ Defaults to None.
321
+ emotion (str, optional):
322
+ Emotion to use for 🐸Coqui Studio models. If None, Studio models use "Neutral". Defaults to None.
323
+ speed (float, optional):
324
+ Speed factor to use for 🐸Coqui Studio models, between 0 and 2.0. If None, Studio models use 1.0.
325
+ Defaults to None.
326
+ """
327
+ self._check_arguments(
328
+ speaker=speaker, language=language, speaker_wav=speaker_wav, emotion=emotion, speed=speed, **kwargs
329
+ )
330
+ if self.csapi is not None:
331
+ return self.tts_coqui_studio(
332
+ text=text, speaker_name=speaker, language=language, emotion=emotion, speed=speed
333
+ )
334
+ wav = self.synthesizer.tts(
335
+ text=text,
336
+ speaker_name=speaker,
337
+ language_name=language,
338
+ speaker_wav=speaker_wav,
339
+ reference_wav=None,
340
+ style_wav=None,
341
+ style_text=None,
342
+ reference_speaker_name=None,
343
+ **kwargs,
344
+ )
345
+ return wav
346
+
347
+ def tts_to_file(
348
+ self,
349
+ text: str,
350
+ speaker: str = None,
351
+ language: str = None,
352
+ speaker_wav: str = None,
353
+ emotion: str = None,
354
+ speed: float = 1.0,
355
+ file_path: str = "output.wav",
356
+ **kwargs,
357
+ ):
358
+ """Convert text to speech.
359
+
360
+ Args:
361
+ text (str):
362
+ Input text to synthesize.
363
+ speaker (str, optional):
364
+ Speaker name for multi-speaker. You can check whether loaded model is multi-speaker by
365
+ `tts.is_multi_speaker` and list speakers by `tts.speakers`. Defaults to None.
366
+ language (str, optional):
367
+ Language code for multi-lingual models. You can check whether loaded model is multi-lingual
368
+ `tts.is_multi_lingual` and list available languages by `tts.languages`. Defaults to None.
369
+ speaker_wav (str, optional):
370
+ Path to a reference wav file to use for voice cloning with supporting models like YourTTS.
371
+ Defaults to None.
372
+ emotion (str, optional):
373
+ Emotion to use for 🐸Coqui Studio models. Defaults to "Neutral".
374
+ speed (float, optional):
375
+ Speed factor to use for 🐸Coqui Studio models, between 0.0 and 2.0. Defaults to None.
376
+ file_path (str, optional):
377
+ Output file path. Defaults to "output.wav".
378
+ kwargs (dict, optional):
379
+ Additional arguments for the model.
380
+ """
381
+ self._check_arguments(speaker=speaker, language=language, speaker_wav=speaker_wav, **kwargs)
382
+
383
+ if self.csapi is not None:
384
+ return self.tts_coqui_studio(
385
+ text=text, speaker_name=speaker, language=language, emotion=emotion, speed=speed, file_path=file_path
386
+ )
387
+ wav = self.tts(text=text, speaker=speaker, language=language, speaker_wav=speaker_wav, **kwargs)
388
+ self.synthesizer.save_wav(wav=wav, path=file_path)
389
+ return file_path
390
+
391
+ def voice_conversion(
392
+ self,
393
+ source_wav: str,
394
+ target_wav: str,
395
+ ):
396
+ """Voice conversion with FreeVC. Convert source wav to target speaker.
397
+
398
+ Args:``
399
+ source_wav (str):
400
+ Path to the source wav file.
401
+ target_wav (str):`
402
+ Path to the target wav file.
403
+ """
404
+ wav = self.voice_converter.voice_conversion(source_wav=source_wav, target_wav=target_wav)
405
+ return wav
406
+
407
+ def voice_conversion_to_file(
408
+ self,
409
+ source_wav: str,
410
+ target_wav: str,
411
+ file_path: str = "output.wav",
412
+ ):
413
+ """Voice conversion with FreeVC. Convert source wav to target speaker.
414
+
415
+ Args:
416
+ source_wav (str):
417
+ Path to the source wav file.
418
+ target_wav (str):
419
+ Path to the target wav file.
420
+ file_path (str, optional):
421
+ Output file path. Defaults to "output.wav".
422
+ """
423
+ wav = self.voice_conversion(source_wav=source_wav, target_wav=target_wav)
424
+ save_wav(wav=wav, path=file_path, sample_rate=self.voice_converter.vc_config.audio.output_sample_rate)
425
+ return file_path
426
+
427
+ def tts_with_vc(self, text: str, language: str = None, speaker_wav: str = None):
428
+ """Convert text to speech with voice conversion.
429
+
430
+ It combines tts with voice conversion to fake voice cloning.
431
+
432
+ - Convert text to speech with tts.
433
+ - Convert the output wav to target speaker with voice conversion.
434
+
435
+ Args:
436
+ text (str):
437
+ Input text to synthesize.
438
+ language (str, optional):
439
+ Language code for multi-lingual models. You can check whether loaded model is multi-lingual
440
+ `tts.is_multi_lingual` and list available languages by `tts.languages`. Defaults to None.
441
+ speaker_wav (str, optional):
442
+ Path to a reference wav file to use for voice cloning with supporting models like YourTTS.
443
+ Defaults to None.
444
+ """
445
+ with tempfile.NamedTemporaryFile(suffix=".wav", delete=False) as fp:
446
+ # Lazy code... save it to a temp file to resample it while reading it for VC
447
+ self.tts_to_file(text=text, speaker=None, language=language, file_path=fp.name)
448
+ if self.voice_converter is None:
449
+ self.load_vc_model_by_name("voice_conversion_models/multilingual/vctk/freevc24")
450
+ wav = self.voice_converter.voice_conversion(source_wav=fp.name, target_wav=speaker_wav)
451
+ return wav
452
+
453
+ def tts_with_vc_to_file(
454
+ self, text: str, language: str = None, speaker_wav: str = None, file_path: str = "output.wav"
455
+ ):
456
+ """Convert text to speech with voice conversion and save to file.
457
+
458
+ Check `tts_with_vc` for more details.
459
+
460
+ Args:
461
+ text (str):
462
+ Input text to synthesize.
463
+ language (str, optional):
464
+ Language code for multi-lingual models. You can check whether loaded model is multi-lingual
465
+ `tts.is_multi_lingual` and list available languages by `tts.languages`. Defaults to None.
466
+ speaker_wav (str, optional):
467
+ Path to a reference wav file to use for voice cloning with supporting models like YourTTS.
468
+ Defaults to None.
469
+ file_path (str, optional):
470
+ Output file path. Defaults to "output.wav".
471
+ """
472
+ wav = self.tts_with_vc(text=text, language=language, speaker_wav=speaker_wav)
473
+ save_wav(wav=wav, path=file_path, sample_rate=self.voice_converter.vc_config.audio.output_sample_rate)
TTS/bin/__init__.py ADDED
File without changes
TTS/bin/collect_env_info.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Get detailed info about the working environment."""
2
+ import os
3
+ import platform
4
+ import sys
5
+
6
+ import numpy
7
+ import torch
8
+
9
+ sys.path += [os.path.abspath(".."), os.path.abspath(".")]
10
+ import json
11
+
12
+ import TTS
13
+
14
+
15
+ def system_info():
16
+ return {
17
+ "OS": platform.system(),
18
+ "architecture": platform.architecture(),
19
+ "version": platform.version(),
20
+ "processor": platform.processor(),
21
+ "python": platform.python_version(),
22
+ }
23
+
24
+
25
+ def cuda_info():
26
+ return {
27
+ "GPU": [torch.cuda.get_device_name(i) for i in range(torch.cuda.device_count())],
28
+ "available": torch.cuda.is_available(),
29
+ "version": torch.version.cuda,
30
+ }
31
+
32
+
33
+ def package_info():
34
+ return {
35
+ "numpy": numpy.__version__,
36
+ "PyTorch_version": torch.__version__,
37
+ "PyTorch_debug": torch.version.debug,
38
+ "TTS": TTS.__version__,
39
+ }
40
+
41
+
42
+ def main():
43
+ details = {"System": system_info(), "CUDA": cuda_info(), "Packages": package_info()}
44
+ print(json.dumps(details, indent=4, sort_keys=True))
45
+
46
+
47
+ if __name__ == "__main__":
48
+ main()
TTS/bin/compute_attention_masks.py ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import importlib
3
+ import os
4
+ from argparse import RawTextHelpFormatter
5
+
6
+ import numpy as np
7
+ import torch
8
+ from torch.utils.data import DataLoader
9
+ from tqdm import tqdm
10
+
11
+ from TTS.config import load_config
12
+ from TTS.tts.datasets.TTSDataset import TTSDataset
13
+ from TTS.tts.models import setup_model
14
+ from TTS.tts.utils.text.characters import make_symbols, phonemes, symbols
15
+ from TTS.utils.audio import AudioProcessor
16
+ from TTS.utils.io import load_checkpoint
17
+
18
+ if __name__ == "__main__":
19
+ # pylint: disable=bad-option-value
20
+ parser = argparse.ArgumentParser(
21
+ description="""Extract attention masks from trained Tacotron/Tacotron2 models.
22
+ These masks can be used for different purposes including training a TTS model with a Duration Predictor.\n\n"""
23
+ """Each attention mask is written to the same path as the input wav file with ".npy" file extension.
24
+ (e.g. path/bla.wav (wav file) --> path/bla.npy (attention mask))\n"""
25
+ """
26
+ Example run:
27
+ CUDA_VISIBLE_DEVICE="0" python TTS/bin/compute_attention_masks.py
28
+ --model_path /data/rw/home/Models/ljspeech-dcattn-December-14-2020_11+10AM-9d0e8c7/checkpoint_200000.pth
29
+ --config_path /data/rw/home/Models/ljspeech-dcattn-December-14-2020_11+10AM-9d0e8c7/config.json
30
+ --dataset_metafile metadata.csv
31
+ --data_path /root/LJSpeech-1.1/
32
+ --batch_size 32
33
+ --dataset ljspeech
34
+ --use_cuda True
35
+ """,
36
+ formatter_class=RawTextHelpFormatter,
37
+ )
38
+ parser.add_argument("--model_path", type=str, required=True, help="Path to Tacotron/Tacotron2 model file ")
39
+ parser.add_argument(
40
+ "--config_path",
41
+ type=str,
42
+ required=True,
43
+ help="Path to Tacotron/Tacotron2 config file.",
44
+ )
45
+ parser.add_argument(
46
+ "--dataset",
47
+ type=str,
48
+ default="",
49
+ required=True,
50
+ help="Target dataset processor name from TTS.tts.dataset.preprocess.",
51
+ )
52
+
53
+ parser.add_argument(
54
+ "--dataset_metafile",
55
+ type=str,
56
+ default="",
57
+ required=True,
58
+ help="Dataset metafile inclusing file paths with transcripts.",
59
+ )
60
+ parser.add_argument("--data_path", type=str, default="", help="Defines the data path. It overwrites config.json.")
61
+ parser.add_argument("--use_cuda", type=bool, default=False, help="enable/disable cuda.")
62
+
63
+ parser.add_argument(
64
+ "--batch_size", default=16, type=int, help="Batch size for the model. Use batch_size=1 if you have no CUDA."
65
+ )
66
+ args = parser.parse_args()
67
+
68
+ C = load_config(args.config_path)
69
+ ap = AudioProcessor(**C.audio)
70
+
71
+ # if the vocabulary was passed, replace the default
72
+ if "characters" in C.keys():
73
+ symbols, phonemes = make_symbols(**C.characters)
74
+
75
+ # load the model
76
+ num_chars = len(phonemes) if C.use_phonemes else len(symbols)
77
+ # TODO: handle multi-speaker
78
+ model = setup_model(C)
79
+ model, _ = load_checkpoint(model, args.model_path, args.use_cuda, True)
80
+
81
+ # data loader
82
+ preprocessor = importlib.import_module("TTS.tts.datasets.formatters")
83
+ preprocessor = getattr(preprocessor, args.dataset)
84
+ meta_data = preprocessor(args.data_path, args.dataset_metafile)
85
+ dataset = TTSDataset(
86
+ model.decoder.r,
87
+ C.text_cleaner,
88
+ compute_linear_spec=False,
89
+ ap=ap,
90
+ meta_data=meta_data,
91
+ characters=C.characters if "characters" in C.keys() else None,
92
+ add_blank=C["add_blank"] if "add_blank" in C.keys() else False,
93
+ use_phonemes=C.use_phonemes,
94
+ phoneme_cache_path=C.phoneme_cache_path,
95
+ phoneme_language=C.phoneme_language,
96
+ enable_eos_bos=C.enable_eos_bos_chars,
97
+ )
98
+
99
+ dataset.sort_and_filter_items(C.get("sort_by_audio_len", default=False))
100
+ loader = DataLoader(
101
+ dataset,
102
+ batch_size=args.batch_size,
103
+ num_workers=4,
104
+ collate_fn=dataset.collate_fn,
105
+ shuffle=False,
106
+ drop_last=False,
107
+ )
108
+
109
+ # compute attentions
110
+ file_paths = []
111
+ with torch.no_grad():
112
+ for data in tqdm(loader):
113
+ # setup input data
114
+ text_input = data[0]
115
+ text_lengths = data[1]
116
+ linear_input = data[3]
117
+ mel_input = data[4]
118
+ mel_lengths = data[5]
119
+ stop_targets = data[6]
120
+ item_idxs = data[7]
121
+
122
+ # dispatch data to GPU
123
+ if args.use_cuda:
124
+ text_input = text_input.cuda()
125
+ text_lengths = text_lengths.cuda()
126
+ mel_input = mel_input.cuda()
127
+ mel_lengths = mel_lengths.cuda()
128
+
129
+ model_outputs = model.forward(text_input, text_lengths, mel_input)
130
+
131
+ alignments = model_outputs["alignments"].detach()
132
+ for idx, alignment in enumerate(alignments):
133
+ item_idx = item_idxs[idx]
134
+ # interpolate if r > 1
135
+ alignment = (
136
+ torch.nn.functional.interpolate(
137
+ alignment.transpose(0, 1).unsqueeze(0),
138
+ size=None,
139
+ scale_factor=model.decoder.r,
140
+ mode="nearest",
141
+ align_corners=None,
142
+ recompute_scale_factor=None,
143
+ )
144
+ .squeeze(0)
145
+ .transpose(0, 1)
146
+ )
147
+ # remove paddings
148
+ alignment = alignment[: mel_lengths[idx], : text_lengths[idx]].cpu().numpy()
149
+ # set file paths
150
+ wav_file_name = os.path.basename(item_idx)
151
+ align_file_name = os.path.splitext(wav_file_name)[0] + "_attn.npy"
152
+ file_path = item_idx.replace(wav_file_name, align_file_name)
153
+ # save output
154
+ wav_file_abs_path = os.path.abspath(item_idx)
155
+ file_abs_path = os.path.abspath(file_path)
156
+ file_paths.append([wav_file_abs_path, file_abs_path])
157
+ np.save(file_path, alignment)
158
+
159
+ # ourput metafile
160
+ metafile = os.path.join(args.data_path, "metadata_attn_mask.txt")
161
+
162
+ with open(metafile, "w", encoding="utf-8") as f:
163
+ for p in file_paths:
164
+ f.write(f"{p[0]}|{p[1]}\n")
165
+ print(f" >> Metafile created: {metafile}")
TTS/bin/compute_embeddings.py ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import os
3
+ from argparse import RawTextHelpFormatter
4
+
5
+ import torch
6
+ from tqdm import tqdm
7
+
8
+ from TTS.config import load_config
9
+ from TTS.config.shared_configs import BaseDatasetConfig
10
+ from TTS.tts.datasets import load_tts_samples
11
+ from TTS.tts.utils.managers import save_file
12
+ from TTS.tts.utils.speakers import SpeakerManager
13
+
14
+
15
+ def compute_embeddings(
16
+ model_path,
17
+ config_path,
18
+ output_path,
19
+ old_speakers_file=None,
20
+ old_append=False,
21
+ config_dataset_path=None,
22
+ formatter_name=None,
23
+ dataset_name=None,
24
+ dataset_path=None,
25
+ meta_file_train=None,
26
+ meta_file_val=None,
27
+ disable_cuda=False,
28
+ no_eval=False,
29
+ ):
30
+ use_cuda = torch.cuda.is_available() and not disable_cuda
31
+
32
+ if config_dataset_path is not None:
33
+ c_dataset = load_config(config_dataset_path)
34
+ meta_data_train, meta_data_eval = load_tts_samples(c_dataset.datasets, eval_split=not no_eval)
35
+ else:
36
+ c_dataset = BaseDatasetConfig()
37
+ c_dataset.formatter = formatter_name
38
+ c_dataset.dataset_name = dataset_name
39
+ c_dataset.path = dataset_path
40
+ if meta_file_train is not None:
41
+ c_dataset.meta_file_train = meta_file_train
42
+ if meta_file_val is not None:
43
+ c_dataset.meta_file_val = meta_file_val
44
+ meta_data_train, meta_data_eval = load_tts_samples(c_dataset, eval_split=not no_eval)
45
+
46
+ if meta_data_eval is None:
47
+ samples = meta_data_train
48
+ else:
49
+ samples = meta_data_train + meta_data_eval
50
+
51
+ encoder_manager = SpeakerManager(
52
+ encoder_model_path=model_path,
53
+ encoder_config_path=config_path,
54
+ d_vectors_file_path=old_speakers_file,
55
+ use_cuda=use_cuda,
56
+ )
57
+
58
+ class_name_key = encoder_manager.encoder_config.class_name_key
59
+
60
+ # compute speaker embeddings
61
+ if old_speakers_file is not None and old_append:
62
+ speaker_mapping = encoder_manager.embeddings
63
+ else:
64
+ speaker_mapping = {}
65
+
66
+ for fields in tqdm(samples):
67
+ class_name = fields[class_name_key]
68
+ audio_file = fields["audio_file"]
69
+ embedding_key = fields["audio_unique_name"]
70
+
71
+ # Only update the speaker name when the embedding is already in the old file.
72
+ if embedding_key in speaker_mapping:
73
+ speaker_mapping[embedding_key]["name"] = class_name
74
+ continue
75
+
76
+ if old_speakers_file is not None and embedding_key in encoder_manager.clip_ids:
77
+ # get the embedding from the old file
78
+ embedd = encoder_manager.get_embedding_by_clip(embedding_key)
79
+ else:
80
+ # extract the embedding
81
+ embedd = encoder_manager.compute_embedding_from_clip(audio_file)
82
+
83
+ # create speaker_mapping if target dataset is defined
84
+ speaker_mapping[embedding_key] = {}
85
+ speaker_mapping[embedding_key]["name"] = class_name
86
+ speaker_mapping[embedding_key]["embedding"] = embedd
87
+
88
+ if speaker_mapping:
89
+ # save speaker_mapping if target dataset is defined
90
+ if os.path.isdir(output_path):
91
+ mapping_file_path = os.path.join(output_path, "speakers.pth")
92
+ else:
93
+ mapping_file_path = output_path
94
+
95
+ if os.path.dirname(mapping_file_path) != "":
96
+ os.makedirs(os.path.dirname(mapping_file_path), exist_ok=True)
97
+
98
+ save_file(speaker_mapping, mapping_file_path)
99
+ print("Speaker embeddings saved at:", mapping_file_path)
100
+
101
+
102
+ if __name__ == "__main__":
103
+ parser = argparse.ArgumentParser(
104
+ description="""Compute embedding vectors for each audio file in a dataset and store them keyed by `{dataset_name}#{file_path}` in a .pth file\n\n"""
105
+ """
106
+ Example runs:
107
+ python TTS/bin/compute_embeddings.py --model_path speaker_encoder_model.pth --config_path speaker_encoder_config.json --config_dataset_path dataset_config.json
108
+
109
+ python TTS/bin/compute_embeddings.py --model_path speaker_encoder_model.pth --config_path speaker_encoder_config.json --formatter_name coqui --dataset_path /path/to/vctk/dataset --dataset_name my_vctk --meta_file_train /path/to/vctk/metafile_train.csv --meta_file_val /path/to/vctk/metafile_eval.csv
110
+ """,
111
+ formatter_class=RawTextHelpFormatter,
112
+ )
113
+ parser.add_argument(
114
+ "--model_path",
115
+ type=str,
116
+ help="Path to model checkpoint file. It defaults to the released speaker encoder.",
117
+ default="https://github.com/coqui-ai/TTS/releases/download/speaker_encoder_model/model_se.pth.tar",
118
+ )
119
+ parser.add_argument(
120
+ "--config_path",
121
+ type=str,
122
+ help="Path to model config file. It defaults to the released speaker encoder config.",
123
+ default="https://github.com/coqui-ai/TTS/releases/download/speaker_encoder_model/config_se.json",
124
+ )
125
+ parser.add_argument(
126
+ "--config_dataset_path",
127
+ type=str,
128
+ help="Path to dataset config file. You either need to provide this or `formatter_name`, `dataset_name` and `dataset_path` arguments.",
129
+ default=None,
130
+ )
131
+ parser.add_argument(
132
+ "--output_path",
133
+ type=str,
134
+ help="Path for output `pth` or `json` file.",
135
+ default="speakers.pth",
136
+ )
137
+ parser.add_argument(
138
+ "--old_file",
139
+ type=str,
140
+ help="The old existing embedding file, from which the embeddings will be directly loaded for already computed audio clips.",
141
+ default=None,
142
+ )
143
+ parser.add_argument(
144
+ "--old_append",
145
+ help="Append new audio clip embeddings to the old embedding file, generate a new non-duplicated merged embedding file. Default False",
146
+ default=False,
147
+ action="store_true",
148
+ )
149
+ parser.add_argument("--disable_cuda", type=bool, help="Flag to disable cuda.", default=False)
150
+ parser.add_argument("--no_eval", help="Do not compute eval?. Default False", default=False, action="store_true")
151
+ parser.add_argument(
152
+ "--formatter_name",
153
+ type=str,
154
+ help="Name of the formatter to use. You either need to provide this or `config_dataset_path`",
155
+ default=None,
156
+ )
157
+ parser.add_argument(
158
+ "--dataset_name",
159
+ type=str,
160
+ help="Name of the dataset to use. You either need to provide this or `config_dataset_path`",
161
+ default=None,
162
+ )
163
+ parser.add_argument(
164
+ "--dataset_path",
165
+ type=str,
166
+ help="Path to the dataset. You either need to provide this or `config_dataset_path`",
167
+ default=None,
168
+ )
169
+ parser.add_argument(
170
+ "--meta_file_train",
171
+ type=str,
172
+ help="Path to the train meta file. If not set, dataset formatter uses the default metafile if it is defined in the formatter. You either need to provide this or `config_dataset_path`",
173
+ default=None,
174
+ )
175
+ parser.add_argument(
176
+ "--meta_file_val",
177
+ type=str,
178
+ help="Path to the evaluation meta file. If not set, dataset formatter uses the default metafile if it is defined in the formatter. You either need to provide this or `config_dataset_path`",
179
+ default=None,
180
+ )
181
+ args = parser.parse_args()
182
+
183
+ compute_embeddings(
184
+ args.model_path,
185
+ args.config_path,
186
+ args.output_path,
187
+ old_speakers_file=args.old_file,
188
+ old_append=args.old_append,
189
+ config_dataset_path=args.config_dataset_path,
190
+ formatter_name=args.formatter_name,
191
+ dataset_name=args.dataset_name,
192
+ dataset_path=args.dataset_path,
193
+ meta_file_train=args.meta_file_train,
194
+ meta_file_val=args.meta_file_val,
195
+ disable_cuda=args.disable_cuda,
196
+ no_eval=args.no_eval,
197
+ )
TTS/bin/compute_statistics.py ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ import argparse
5
+ import glob
6
+ import os
7
+
8
+ import numpy as np
9
+ from tqdm import tqdm
10
+
11
+ # from TTS.utils.io import load_config
12
+ from TTS.config import load_config
13
+ from TTS.tts.datasets import load_tts_samples
14
+ from TTS.utils.audio import AudioProcessor
15
+
16
+
17
+ def main():
18
+ """Run preprocessing process."""
19
+ parser = argparse.ArgumentParser(description="Compute mean and variance of spectrogtram features.")
20
+ parser.add_argument("config_path", type=str, help="TTS config file path to define audio processin parameters.")
21
+ parser.add_argument("out_path", type=str, help="save path (directory and filename).")
22
+ parser.add_argument(
23
+ "--data_path",
24
+ type=str,
25
+ required=False,
26
+ help="folder including the target set of wavs overriding dataset config.",
27
+ )
28
+ args, overrides = parser.parse_known_args()
29
+
30
+ CONFIG = load_config(args.config_path)
31
+ CONFIG.parse_known_args(overrides, relaxed_parser=True)
32
+
33
+ # load config
34
+ CONFIG.audio.signal_norm = False # do not apply earlier normalization
35
+ CONFIG.audio.stats_path = None # discard pre-defined stats
36
+
37
+ # load audio processor
38
+ ap = AudioProcessor(**CONFIG.audio.to_dict())
39
+
40
+ # load the meta data of target dataset
41
+ if args.data_path:
42
+ dataset_items = glob.glob(os.path.join(args.data_path, "**", "*.wav"), recursive=True)
43
+ else:
44
+ dataset_items = load_tts_samples(CONFIG.datasets)[0] # take only train data
45
+ print(f" > There are {len(dataset_items)} files.")
46
+
47
+ mel_sum = 0
48
+ mel_square_sum = 0
49
+ linear_sum = 0
50
+ linear_square_sum = 0
51
+ N = 0
52
+ for item in tqdm(dataset_items):
53
+ # compute features
54
+ wav = ap.load_wav(item if isinstance(item, str) else item["audio_file"])
55
+ linear = ap.spectrogram(wav)
56
+ mel = ap.melspectrogram(wav)
57
+
58
+ # compute stats
59
+ N += mel.shape[1]
60
+ mel_sum += mel.sum(1)
61
+ linear_sum += linear.sum(1)
62
+ mel_square_sum += (mel**2).sum(axis=1)
63
+ linear_square_sum += (linear**2).sum(axis=1)
64
+
65
+ mel_mean = mel_sum / N
66
+ mel_scale = np.sqrt(mel_square_sum / N - mel_mean**2)
67
+ linear_mean = linear_sum / N
68
+ linear_scale = np.sqrt(linear_square_sum / N - linear_mean**2)
69
+
70
+ output_file_path = args.out_path
71
+ stats = {}
72
+ stats["mel_mean"] = mel_mean
73
+ stats["mel_std"] = mel_scale
74
+ stats["linear_mean"] = linear_mean
75
+ stats["linear_std"] = linear_scale
76
+
77
+ print(f" > Avg mel spec mean: {mel_mean.mean()}")
78
+ print(f" > Avg mel spec scale: {mel_scale.mean()}")
79
+ print(f" > Avg linear spec mean: {linear_mean.mean()}")
80
+ print(f" > Avg linear spec scale: {linear_scale.mean()}")
81
+
82
+ # set default config values for mean-var scaling
83
+ CONFIG.audio.stats_path = output_file_path
84
+ CONFIG.audio.signal_norm = True
85
+ # remove redundant values
86
+ del CONFIG.audio.max_norm
87
+ del CONFIG.audio.min_level_db
88
+ del CONFIG.audio.symmetric_norm
89
+ del CONFIG.audio.clip_norm
90
+ stats["audio_config"] = CONFIG.audio.to_dict()
91
+ np.save(output_file_path, stats, allow_pickle=True)
92
+ print(f" > stats saved to {output_file_path}")
93
+
94
+
95
+ if __name__ == "__main__":
96
+ main()
TTS/bin/eval_encoder.py ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ from argparse import RawTextHelpFormatter
3
+
4
+ import torch
5
+ from tqdm import tqdm
6
+
7
+ from TTS.config import load_config
8
+ from TTS.tts.datasets import load_tts_samples
9
+ from TTS.tts.utils.speakers import SpeakerManager
10
+
11
+
12
+ def compute_encoder_accuracy(dataset_items, encoder_manager):
13
+ class_name_key = encoder_manager.encoder_config.class_name_key
14
+ map_classid_to_classname = getattr(encoder_manager.encoder_config, "map_classid_to_classname", None)
15
+
16
+ class_acc_dict = {}
17
+
18
+ # compute embeddings for all wav_files
19
+ for item in tqdm(dataset_items):
20
+ class_name = item[class_name_key]
21
+ wav_file = item["audio_file"]
22
+
23
+ # extract the embedding
24
+ embedd = encoder_manager.compute_embedding_from_clip(wav_file)
25
+ if encoder_manager.encoder_criterion is not None and map_classid_to_classname is not None:
26
+ embedding = torch.FloatTensor(embedd).unsqueeze(0)
27
+ if encoder_manager.use_cuda:
28
+ embedding = embedding.cuda()
29
+
30
+ class_id = encoder_manager.encoder_criterion.softmax.inference(embedding).item()
31
+ predicted_label = map_classid_to_classname[str(class_id)]
32
+ else:
33
+ predicted_label = None
34
+
35
+ if class_name is not None and predicted_label is not None:
36
+ is_equal = int(class_name == predicted_label)
37
+ if class_name not in class_acc_dict:
38
+ class_acc_dict[class_name] = [is_equal]
39
+ else:
40
+ class_acc_dict[class_name].append(is_equal)
41
+ else:
42
+ raise RuntimeError("Error: class_name or/and predicted_label are None")
43
+
44
+ acc_avg = 0
45
+ for key, values in class_acc_dict.items():
46
+ acc = sum(values) / len(values)
47
+ print("Class", key, "Accuracy:", acc)
48
+ acc_avg += acc
49
+
50
+ print("Average Accuracy:", acc_avg / len(class_acc_dict))
51
+
52
+
53
+ if __name__ == "__main__":
54
+ parser = argparse.ArgumentParser(
55
+ description="""Compute the accuracy of the encoder.\n\n"""
56
+ """
57
+ Example runs:
58
+ python TTS/bin/eval_encoder.py emotion_encoder_model.pth emotion_encoder_config.json dataset_config.json
59
+ """,
60
+ formatter_class=RawTextHelpFormatter,
61
+ )
62
+ parser.add_argument("model_path", type=str, help="Path to model checkpoint file.")
63
+ parser.add_argument(
64
+ "config_path",
65
+ type=str,
66
+ help="Path to model config file.",
67
+ )
68
+
69
+ parser.add_argument(
70
+ "config_dataset_path",
71
+ type=str,
72
+ help="Path to dataset config file.",
73
+ )
74
+ parser.add_argument("--use_cuda", type=bool, help="flag to set cuda.", default=True)
75
+ parser.add_argument("--eval", type=bool, help="compute eval.", default=True)
76
+
77
+ args = parser.parse_args()
78
+
79
+ c_dataset = load_config(args.config_dataset_path)
80
+
81
+ meta_data_train, meta_data_eval = load_tts_samples(c_dataset.datasets, eval_split=args.eval)
82
+ items = meta_data_train + meta_data_eval
83
+
84
+ enc_manager = SpeakerManager(
85
+ encoder_model_path=args.model_path, encoder_config_path=args.config_path, use_cuda=args.use_cuda
86
+ )
87
+
88
+ compute_encoder_accuracy(items, enc_manager)
TTS/bin/extract_tts_spectrograms.py ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract Mel spectrograms with teacher forcing."""
3
+
4
+ import argparse
5
+ import os
6
+
7
+ import numpy as np
8
+ import torch
9
+ from torch.utils.data import DataLoader
10
+ from tqdm import tqdm
11
+
12
+ from TTS.config import load_config
13
+ from TTS.tts.datasets import TTSDataset, load_tts_samples
14
+ from TTS.tts.models import setup_model
15
+ from TTS.tts.utils.speakers import SpeakerManager
16
+ from TTS.tts.utils.text.tokenizer import TTSTokenizer
17
+ from TTS.utils.audio import AudioProcessor
18
+ from TTS.utils.generic_utils import count_parameters
19
+
20
+ use_cuda = torch.cuda.is_available()
21
+
22
+
23
+ def setup_loader(ap, r, verbose=False):
24
+ tokenizer, _ = TTSTokenizer.init_from_config(c)
25
+ dataset = TTSDataset(
26
+ outputs_per_step=r,
27
+ compute_linear_spec=False,
28
+ samples=meta_data,
29
+ tokenizer=tokenizer,
30
+ ap=ap,
31
+ batch_group_size=0,
32
+ min_text_len=c.min_text_len,
33
+ max_text_len=c.max_text_len,
34
+ min_audio_len=c.min_audio_len,
35
+ max_audio_len=c.max_audio_len,
36
+ phoneme_cache_path=c.phoneme_cache_path,
37
+ precompute_num_workers=0,
38
+ use_noise_augment=False,
39
+ verbose=verbose,
40
+ speaker_id_mapping=speaker_manager.name_to_id if c.use_speaker_embedding else None,
41
+ d_vector_mapping=speaker_manager.embeddings if c.use_d_vector_file else None,
42
+ )
43
+
44
+ if c.use_phonemes and c.compute_input_seq_cache:
45
+ # precompute phonemes to have a better estimate of sequence lengths.
46
+ dataset.compute_input_seq(c.num_loader_workers)
47
+ dataset.preprocess_samples()
48
+
49
+ loader = DataLoader(
50
+ dataset,
51
+ batch_size=c.batch_size,
52
+ shuffle=False,
53
+ collate_fn=dataset.collate_fn,
54
+ drop_last=False,
55
+ sampler=None,
56
+ num_workers=c.num_loader_workers,
57
+ pin_memory=False,
58
+ )
59
+ return loader
60
+
61
+
62
+ def set_filename(wav_path, out_path):
63
+ wav_file = os.path.basename(wav_path)
64
+ file_name = wav_file.split(".")[0]
65
+ os.makedirs(os.path.join(out_path, "quant"), exist_ok=True)
66
+ os.makedirs(os.path.join(out_path, "mel"), exist_ok=True)
67
+ os.makedirs(os.path.join(out_path, "wav_gl"), exist_ok=True)
68
+ os.makedirs(os.path.join(out_path, "wav"), exist_ok=True)
69
+ wavq_path = os.path.join(out_path, "quant", file_name)
70
+ mel_path = os.path.join(out_path, "mel", file_name)
71
+ wav_gl_path = os.path.join(out_path, "wav_gl", file_name + ".wav")
72
+ wav_path = os.path.join(out_path, "wav", file_name + ".wav")
73
+ return file_name, wavq_path, mel_path, wav_gl_path, wav_path
74
+
75
+
76
+ def format_data(data):
77
+ # setup input data
78
+ text_input = data["token_id"]
79
+ text_lengths = data["token_id_lengths"]
80
+ mel_input = data["mel"]
81
+ mel_lengths = data["mel_lengths"]
82
+ item_idx = data["item_idxs"]
83
+ d_vectors = data["d_vectors"]
84
+ speaker_ids = data["speaker_ids"]
85
+ attn_mask = data["attns"]
86
+ avg_text_length = torch.mean(text_lengths.float())
87
+ avg_spec_length = torch.mean(mel_lengths.float())
88
+
89
+ # dispatch data to GPU
90
+ if use_cuda:
91
+ text_input = text_input.cuda(non_blocking=True)
92
+ text_lengths = text_lengths.cuda(non_blocking=True)
93
+ mel_input = mel_input.cuda(non_blocking=True)
94
+ mel_lengths = mel_lengths.cuda(non_blocking=True)
95
+ if speaker_ids is not None:
96
+ speaker_ids = speaker_ids.cuda(non_blocking=True)
97
+ if d_vectors is not None:
98
+ d_vectors = d_vectors.cuda(non_blocking=True)
99
+ if attn_mask is not None:
100
+ attn_mask = attn_mask.cuda(non_blocking=True)
101
+ return (
102
+ text_input,
103
+ text_lengths,
104
+ mel_input,
105
+ mel_lengths,
106
+ speaker_ids,
107
+ d_vectors,
108
+ avg_text_length,
109
+ avg_spec_length,
110
+ attn_mask,
111
+ item_idx,
112
+ )
113
+
114
+
115
+ @torch.no_grad()
116
+ def inference(
117
+ model_name,
118
+ model,
119
+ ap,
120
+ text_input,
121
+ text_lengths,
122
+ mel_input,
123
+ mel_lengths,
124
+ speaker_ids=None,
125
+ d_vectors=None,
126
+ ):
127
+ if model_name == "glow_tts":
128
+ speaker_c = None
129
+ if speaker_ids is not None:
130
+ speaker_c = speaker_ids
131
+ elif d_vectors is not None:
132
+ speaker_c = d_vectors
133
+ outputs = model.inference_with_MAS(
134
+ text_input,
135
+ text_lengths,
136
+ mel_input,
137
+ mel_lengths,
138
+ aux_input={"d_vectors": speaker_c, "speaker_ids": speaker_ids},
139
+ )
140
+ model_output = outputs["model_outputs"]
141
+ model_output = model_output.detach().cpu().numpy()
142
+
143
+ elif "tacotron" in model_name:
144
+ aux_input = {"speaker_ids": speaker_ids, "d_vectors": d_vectors}
145
+ outputs = model(text_input, text_lengths, mel_input, mel_lengths, aux_input)
146
+ postnet_outputs = outputs["model_outputs"]
147
+ # normalize tacotron output
148
+ if model_name == "tacotron":
149
+ mel_specs = []
150
+ postnet_outputs = postnet_outputs.data.cpu().numpy()
151
+ for b in range(postnet_outputs.shape[0]):
152
+ postnet_output = postnet_outputs[b]
153
+ mel_specs.append(torch.FloatTensor(ap.out_linear_to_mel(postnet_output.T).T))
154
+ model_output = torch.stack(mel_specs).cpu().numpy()
155
+
156
+ elif model_name == "tacotron2":
157
+ model_output = postnet_outputs.detach().cpu().numpy()
158
+ return model_output
159
+
160
+
161
+ def extract_spectrograms(
162
+ data_loader, model, ap, output_path, quantized_wav=False, save_audio=False, debug=False, metada_name="metada.txt"
163
+ ):
164
+ model.eval()
165
+ export_metadata = []
166
+ for _, data in tqdm(enumerate(data_loader), total=len(data_loader)):
167
+ # format data
168
+ (
169
+ text_input,
170
+ text_lengths,
171
+ mel_input,
172
+ mel_lengths,
173
+ speaker_ids,
174
+ d_vectors,
175
+ _,
176
+ _,
177
+ _,
178
+ item_idx,
179
+ ) = format_data(data)
180
+
181
+ model_output = inference(
182
+ c.model.lower(),
183
+ model,
184
+ ap,
185
+ text_input,
186
+ text_lengths,
187
+ mel_input,
188
+ mel_lengths,
189
+ speaker_ids,
190
+ d_vectors,
191
+ )
192
+
193
+ for idx in range(text_input.shape[0]):
194
+ wav_file_path = item_idx[idx]
195
+ wav = ap.load_wav(wav_file_path)
196
+ _, wavq_path, mel_path, wav_gl_path, wav_path = set_filename(wav_file_path, output_path)
197
+
198
+ # quantize and save wav
199
+ if quantized_wav:
200
+ wavq = ap.quantize(wav)
201
+ np.save(wavq_path, wavq)
202
+
203
+ # save TTS mel
204
+ mel = model_output[idx]
205
+ mel_length = mel_lengths[idx]
206
+ mel = mel[:mel_length, :].T
207
+ np.save(mel_path, mel)
208
+
209
+ export_metadata.append([wav_file_path, mel_path])
210
+ if save_audio:
211
+ ap.save_wav(wav, wav_path)
212
+
213
+ if debug:
214
+ print("Audio for debug saved at:", wav_gl_path)
215
+ wav = ap.inv_melspectrogram(mel)
216
+ ap.save_wav(wav, wav_gl_path)
217
+
218
+ with open(os.path.join(output_path, metada_name), "w", encoding="utf-8") as f:
219
+ for data in export_metadata:
220
+ f.write(f"{data[0]}|{data[1]+'.npy'}\n")
221
+
222
+
223
+ def main(args): # pylint: disable=redefined-outer-name
224
+ # pylint: disable=global-variable-undefined
225
+ global meta_data, speaker_manager
226
+
227
+ # Audio processor
228
+ ap = AudioProcessor(**c.audio)
229
+
230
+ # load data instances
231
+ meta_data_train, meta_data_eval = load_tts_samples(
232
+ c.datasets, eval_split=args.eval, eval_split_max_size=c.eval_split_max_size, eval_split_size=c.eval_split_size
233
+ )
234
+
235
+ # use eval and training partitions
236
+ meta_data = meta_data_train + meta_data_eval
237
+
238
+ # init speaker manager
239
+ if c.use_speaker_embedding:
240
+ speaker_manager = SpeakerManager(data_items=meta_data)
241
+ elif c.use_d_vector_file:
242
+ speaker_manager = SpeakerManager(d_vectors_file_path=c.d_vector_file)
243
+ else:
244
+ speaker_manager = None
245
+
246
+ # setup model
247
+ model = setup_model(c)
248
+
249
+ # restore model
250
+ model.load_checkpoint(c, args.checkpoint_path, eval=True)
251
+
252
+ if use_cuda:
253
+ model.cuda()
254
+
255
+ num_params = count_parameters(model)
256
+ print("\n > Model has {} parameters".format(num_params), flush=True)
257
+ # set r
258
+ r = 1 if c.model.lower() == "glow_tts" else model.decoder.r
259
+ own_loader = setup_loader(ap, r, verbose=True)
260
+
261
+ extract_spectrograms(
262
+ own_loader,
263
+ model,
264
+ ap,
265
+ args.output_path,
266
+ quantized_wav=args.quantized,
267
+ save_audio=args.save_audio,
268
+ debug=args.debug,
269
+ metada_name="metada.txt",
270
+ )
271
+
272
+
273
+ if __name__ == "__main__":
274
+ parser = argparse.ArgumentParser()
275
+ parser.add_argument("--config_path", type=str, help="Path to config file for training.", required=True)
276
+ parser.add_argument("--checkpoint_path", type=str, help="Model file to be restored.", required=True)
277
+ parser.add_argument("--output_path", type=str, help="Path to save mel specs", required=True)
278
+ parser.add_argument("--debug", default=False, action="store_true", help="Save audio files for debug")
279
+ parser.add_argument("--save_audio", default=False, action="store_true", help="Save audio files")
280
+ parser.add_argument("--quantized", action="store_true", help="Save quantized audio files")
281
+ parser.add_argument("--eval", type=bool, help="compute eval.", default=True)
282
+ args = parser.parse_args()
283
+
284
+ c = load_config(args.config_path)
285
+ c.audio.trim_silence = False
286
+ main(args)
TTS/bin/find_unique_chars.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Find all the unique characters in a dataset"""
2
+ import argparse
3
+ from argparse import RawTextHelpFormatter
4
+
5
+ from TTS.config import load_config
6
+ from TTS.tts.datasets import load_tts_samples
7
+
8
+
9
+ def main():
10
+ # pylint: disable=bad-option-value
11
+ parser = argparse.ArgumentParser(
12
+ description="""Find all the unique characters or phonemes in a dataset.\n\n"""
13
+ """
14
+ Example runs:
15
+
16
+ python TTS/bin/find_unique_chars.py --config_path config.json
17
+ """,
18
+ formatter_class=RawTextHelpFormatter,
19
+ )
20
+ parser.add_argument("--config_path", type=str, help="Path to dataset config file.", required=True)
21
+ args = parser.parse_args()
22
+
23
+ c = load_config(args.config_path)
24
+
25
+ # load all datasets
26
+ train_items, eval_items = load_tts_samples(
27
+ c.datasets, eval_split=True, eval_split_max_size=c.eval_split_max_size, eval_split_size=c.eval_split_size
28
+ )
29
+
30
+ items = train_items + eval_items
31
+
32
+ texts = "".join(item["text"] for item in items)
33
+ chars = set(texts)
34
+ lower_chars = filter(lambda c: c.islower(), chars)
35
+ chars_force_lower = [c.lower() for c in chars]
36
+ chars_force_lower = set(chars_force_lower)
37
+
38
+ print(f" > Number of unique characters: {len(chars)}")
39
+ print(f" > Unique characters: {''.join(sorted(chars))}")
40
+ print(f" > Unique lower characters: {''.join(sorted(lower_chars))}")
41
+ print(f" > Unique all forced to lower characters: {''.join(sorted(chars_force_lower))}")
42
+
43
+
44
+ if __name__ == "__main__":
45
+ main()
TTS/bin/find_unique_phonemes.py ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Find all the unique characters in a dataset"""
2
+ import argparse
3
+ import multiprocessing
4
+ from argparse import RawTextHelpFormatter
5
+
6
+ from tqdm.contrib.concurrent import process_map
7
+
8
+ from TTS.config import load_config
9
+ from TTS.tts.datasets import load_tts_samples
10
+ from TTS.tts.utils.text.phonemizers import Gruut
11
+
12
+
13
+ def compute_phonemes(item):
14
+ text = item["text"]
15
+ ph = phonemizer.phonemize(text).replace("|", "")
16
+ return set(list(ph))
17
+
18
+
19
+ def main():
20
+ # pylint: disable=W0601
21
+ global c, phonemizer
22
+ # pylint: disable=bad-option-value
23
+ parser = argparse.ArgumentParser(
24
+ description="""Find all the unique characters or phonemes in a dataset.\n\n"""
25
+ """
26
+ Example runs:
27
+
28
+ python TTS/bin/find_unique_phonemes.py --config_path config.json
29
+ """,
30
+ formatter_class=RawTextHelpFormatter,
31
+ )
32
+ parser.add_argument("--config_path", type=str, help="Path to dataset config file.", required=True)
33
+ args = parser.parse_args()
34
+
35
+ c = load_config(args.config_path)
36
+
37
+ # load all datasets
38
+ train_items, eval_items = load_tts_samples(
39
+ c.datasets, eval_split=True, eval_split_max_size=c.eval_split_max_size, eval_split_size=c.eval_split_size
40
+ )
41
+ items = train_items + eval_items
42
+ print("Num items:", len(items))
43
+
44
+ language_list = [item["language"] for item in items]
45
+ is_lang_def = all(language_list)
46
+
47
+ if not c.phoneme_language or not is_lang_def:
48
+ raise ValueError("Phoneme language must be defined in config.")
49
+
50
+ if not language_list.count(language_list[0]) == len(language_list):
51
+ raise ValueError(
52
+ "Currently, just one phoneme language per config file is supported !! Please split the dataset config into different configs and run it individually for each language !!"
53
+ )
54
+
55
+ phonemizer = Gruut(language=language_list[0], keep_puncs=True)
56
+
57
+ phonemes = process_map(compute_phonemes, items, max_workers=multiprocessing.cpu_count(), chunksize=15)
58
+ phones = []
59
+ for ph in phonemes:
60
+ phones.extend(ph)
61
+
62
+ phones = set(phones)
63
+ lower_phones = filter(lambda c: c.islower(), phones)
64
+ phones_force_lower = [c.lower() for c in phones]
65
+ phones_force_lower = set(phones_force_lower)
66
+
67
+ print(f" > Number of unique phonemes: {len(phones)}")
68
+ print(f" > Unique phonemes: {''.join(sorted(phones))}")
69
+ print(f" > Unique lower phonemes: {''.join(sorted(lower_phones))}")
70
+ print(f" > Unique all forced to lower phonemes: {''.join(sorted(phones_force_lower))}")
71
+
72
+
73
+ if __name__ == "__main__":
74
+ main()
TTS/bin/remove_silence_using_vad.py ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import glob
3
+ import multiprocessing
4
+ import os
5
+ import pathlib
6
+
7
+ import torch
8
+ from tqdm import tqdm
9
+
10
+ from TTS.utils.vad import get_vad_model_and_utils, remove_silence
11
+
12
+ torch.set_num_threads(1)
13
+
14
+
15
+ def adjust_path_and_remove_silence(audio_path):
16
+ output_path = audio_path.replace(os.path.join(args.input_dir, ""), os.path.join(args.output_dir, ""))
17
+ # ignore if the file exists
18
+ if os.path.exists(output_path) and not args.force:
19
+ return output_path, False
20
+
21
+ # create all directory structure
22
+ pathlib.Path(output_path).parent.mkdir(parents=True, exist_ok=True)
23
+ # remove the silence and save the audio
24
+ output_path, is_speech = remove_silence(
25
+ model_and_utils,
26
+ audio_path,
27
+ output_path,
28
+ trim_just_beginning_and_end=args.trim_just_beginning_and_end,
29
+ use_cuda=args.use_cuda,
30
+ )
31
+ return output_path, is_speech
32
+
33
+
34
+ def preprocess_audios():
35
+ files = sorted(glob.glob(os.path.join(args.input_dir, args.glob), recursive=True))
36
+ print("> Number of files: ", len(files))
37
+ if not args.force:
38
+ print("> Ignoring files that already exist in the output idrectory.")
39
+
40
+ if args.trim_just_beginning_and_end:
41
+ print("> Trimming just the beginning and the end with nonspeech parts.")
42
+ else:
43
+ print("> Trimming all nonspeech parts.")
44
+
45
+ filtered_files = []
46
+ if files:
47
+ # create threads
48
+ # num_threads = multiprocessing.cpu_count()
49
+ # process_map(adjust_path_and_remove_silence, files, max_workers=num_threads, chunksize=15)
50
+
51
+ if args.num_processes > 1:
52
+ with multiprocessing.Pool(processes=args.num_processes) as pool:
53
+ results = list(
54
+ tqdm(
55
+ pool.imap_unordered(adjust_path_and_remove_silence, files),
56
+ total=len(files),
57
+ desc="Processing audio files",
58
+ )
59
+ )
60
+ for output_path, is_speech in results:
61
+ if not is_speech:
62
+ filtered_files.append(output_path)
63
+ else:
64
+ for f in tqdm(files):
65
+ output_path, is_speech = adjust_path_and_remove_silence(f)
66
+ if not is_speech:
67
+ filtered_files.append(output_path)
68
+
69
+ # write files that do not have speech
70
+ with open(os.path.join(args.output_dir, "filtered_files.txt"), "w", encoding="utf-8") as f:
71
+ for file in filtered_files:
72
+ f.write(str(file) + "\n")
73
+ else:
74
+ print("> No files Found !")
75
+
76
+
77
+ if __name__ == "__main__":
78
+ parser = argparse.ArgumentParser(
79
+ description="python TTS/bin/remove_silence_using_vad.py -i=VCTK-Corpus/ -o=VCTK-Corpus-removed-silence/ -g=wav48_silence_trimmed/*/*_mic1.flac --trim_just_beginning_and_end True"
80
+ )
81
+ parser.add_argument("-i", "--input_dir", type=str, help="Dataset root dir", required=True)
82
+ parser.add_argument("-o", "--output_dir", type=str, help="Output Dataset dir", default="")
83
+ parser.add_argument("-f", "--force", default=False, action="store_true", help="Force the replace of exists files")
84
+ parser.add_argument(
85
+ "-g",
86
+ "--glob",
87
+ type=str,
88
+ default="**/*.wav",
89
+ help="path in glob format for acess wavs from input_dir. ex: wav48/*/*.wav",
90
+ )
91
+ parser.add_argument(
92
+ "-t",
93
+ "--trim_just_beginning_and_end",
94
+ type=bool,
95
+ default=True,
96
+ help="If True this script will trim just the beginning and end nonspeech parts. If False all nonspeech parts will be trim. Default True",
97
+ )
98
+ parser.add_argument(
99
+ "-c",
100
+ "--use_cuda",
101
+ type=bool,
102
+ default=False,
103
+ help="If True use cuda",
104
+ )
105
+ parser.add_argument(
106
+ "--use_onnx",
107
+ type=bool,
108
+ default=False,
109
+ help="If True use onnx",
110
+ )
111
+ parser.add_argument(
112
+ "--num_processes",
113
+ type=int,
114
+ default=1,
115
+ help="Number of processes to use",
116
+ )
117
+ args = parser.parse_args()
118
+
119
+ if args.output_dir == "":
120
+ args.output_dir = args.input_dir
121
+
122
+ # load the model and utils
123
+ model_and_utils = get_vad_model_and_utils(use_cuda=args.use_cuda, use_onnx=args.use_onnx)
124
+ preprocess_audios()
TTS/bin/resample.py ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import glob
3
+ import os
4
+ from argparse import RawTextHelpFormatter
5
+ from multiprocessing import Pool
6
+ from shutil import copytree
7
+
8
+ import librosa
9
+ import soundfile as sf
10
+ from tqdm import tqdm
11
+
12
+
13
+ def resample_file(func_args):
14
+ filename, output_sr = func_args
15
+ y, sr = librosa.load(filename, sr=output_sr)
16
+ sf.write(filename, y, sr)
17
+
18
+
19
+ def resample_files(input_dir, output_sr, output_dir=None, file_ext="wav", n_jobs=10):
20
+ if output_dir:
21
+ print("Recursively copying the input folder...")
22
+ copytree(input_dir, output_dir)
23
+ input_dir = output_dir
24
+
25
+ print("Resampling the audio files...")
26
+ audio_files = glob.glob(os.path.join(input_dir, f"**/*.{file_ext}"), recursive=True)
27
+ print(f"Found {len(audio_files)} files...")
28
+ audio_files = list(zip(audio_files, len(audio_files) * [output_sr]))
29
+ with Pool(processes=n_jobs) as p:
30
+ with tqdm(total=len(audio_files)) as pbar:
31
+ for _, _ in enumerate(p.imap_unordered(resample_file, audio_files)):
32
+ pbar.update()
33
+
34
+ print("Done !")
35
+
36
+
37
+ if __name__ == "__main__":
38
+ parser = argparse.ArgumentParser(
39
+ description="""Resample a folder recusively with librosa
40
+ Can be used in place or create a copy of the folder as an output.\n\n
41
+ Example run:
42
+ python TTS/bin/resample.py
43
+ --input_dir /root/LJSpeech-1.1/
44
+ --output_sr 22050
45
+ --output_dir /root/resampled_LJSpeech-1.1/
46
+ --file_ext wav
47
+ --n_jobs 24
48
+ """,
49
+ formatter_class=RawTextHelpFormatter,
50
+ )
51
+
52
+ parser.add_argument(
53
+ "--input_dir",
54
+ type=str,
55
+ default=None,
56
+ required=True,
57
+ help="Path of the folder containing the audio files to resample",
58
+ )
59
+
60
+ parser.add_argument(
61
+ "--output_sr",
62
+ type=int,
63
+ default=22050,
64
+ required=False,
65
+ help="Samlple rate to which the audio files should be resampled",
66
+ )
67
+
68
+ parser.add_argument(
69
+ "--output_dir",
70
+ type=str,
71
+ default=None,
72
+ required=False,
73
+ help="Path of the destination folder. If not defined, the operation is done in place",
74
+ )
75
+
76
+ parser.add_argument(
77
+ "--file_ext",
78
+ type=str,
79
+ default="wav",
80
+ required=False,
81
+ help="Extension of the audio files to resample",
82
+ )
83
+
84
+ parser.add_argument(
85
+ "--n_jobs", type=int, default=None, help="Number of threads to use, by default it uses all cores"
86
+ )
87
+
88
+ args = parser.parse_args()
89
+
90
+ resample_files(args.input_dir, args.output_sr, args.output_dir, args.file_ext, args.n_jobs)
TTS/bin/synthesize.py ADDED
@@ -0,0 +1,466 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ import argparse
5
+ import sys
6
+ from argparse import RawTextHelpFormatter
7
+
8
+ # pylint: disable=redefined-outer-name, unused-argument
9
+ from pathlib import Path
10
+
11
+ from TTS.api import TTS
12
+ from TTS.utils.manage import ModelManager
13
+ from TTS.utils.synthesizer import Synthesizer
14
+
15
+
16
+ def str2bool(v):
17
+ if isinstance(v, bool):
18
+ return v
19
+ if v.lower() in ("yes", "true", "t", "y", "1"):
20
+ return True
21
+ if v.lower() in ("no", "false", "f", "n", "0"):
22
+ return False
23
+ raise argparse.ArgumentTypeError("Boolean value expected.")
24
+
25
+
26
+ def main():
27
+ description = """Synthesize speech on command line.
28
+
29
+ You can either use your trained model or choose a model from the provided list.
30
+
31
+ If you don't specify any models, then it uses LJSpeech based English model.
32
+
33
+ ## Example Runs
34
+
35
+ ### Single Speaker Models
36
+
37
+ - List provided models:
38
+
39
+ ```
40
+ $ tts --list_models
41
+ ```
42
+
43
+ - Query info for model info by idx:
44
+
45
+ ```
46
+ $ tts --model_info_by_idx "<model_type>/<model_query_idx>"
47
+ ```
48
+
49
+ - Query info for model info by full name:
50
+
51
+ ```
52
+ $ tts --model_info_by_name "<model_type>/<language>/<dataset>/<model_name>"
53
+ ```
54
+
55
+ - Run TTS with default models:
56
+
57
+ ```
58
+ $ tts --text "Text for TTS"
59
+ ```
60
+
61
+ - Run a TTS model with its default vocoder model:
62
+
63
+ ```
64
+ $ tts --text "Text for TTS" --model_name "<model_type>/<language>/<dataset>/<model_name>
65
+ ```
66
+
67
+ - Run with specific TTS and vocoder models from the list:
68
+
69
+ ```
70
+ $ tts --text "Text for TTS" --model_name "<model_type>/<language>/<dataset>/<model_name>" --vocoder_name "<model_type>/<language>/<dataset>/<model_name>" --output_path
71
+ ```
72
+
73
+ - Run your own TTS model (Using Griffin-Lim Vocoder):
74
+
75
+ ```
76
+ $ tts --text "Text for TTS" --model_path path/to/model.pth --config_path path/to/config.json --out_path output/path/speech.wav
77
+ ```
78
+
79
+ - Run your own TTS and Vocoder models:
80
+ ```
81
+ $ tts --text "Text for TTS" --model_path path/to/config.json --config_path path/to/model.pth --out_path output/path/speech.wav
82
+ --vocoder_path path/to/vocoder.pth --vocoder_config_path path/to/vocoder_config.json
83
+ ```
84
+
85
+ ### Multi-speaker Models
86
+
87
+ - List the available speakers and choose as <speaker_id> among them:
88
+
89
+ ```
90
+ $ tts --model_name "<language>/<dataset>/<model_name>" --list_speaker_idxs
91
+ ```
92
+
93
+ - Run the multi-speaker TTS model with the target speaker ID:
94
+
95
+ ```
96
+ $ tts --text "Text for TTS." --out_path output/path/speech.wav --model_name "<language>/<dataset>/<model_name>" --speaker_idx <speaker_id>
97
+ ```
98
+
99
+ - Run your own multi-speaker TTS model:
100
+
101
+ ```
102
+ $ tts --text "Text for TTS" --out_path output/path/speech.wav --model_path path/to/config.json --config_path path/to/model.pth --speakers_file_path path/to/speaker.json --speaker_idx <speaker_id>
103
+ ```
104
+
105
+ ### Voice Conversion Models
106
+
107
+ ```
108
+ $ tts --out_path output/path/speech.wav --model_name "<language>/<dataset>/<model_name>" --source_wav <path/to/speaker/wav> --target_wav <path/to/reference/wav>
109
+ ```
110
+ """
111
+ # We remove Markdown code formatting programmatically here to allow us to copy-and-paste from main README to keep
112
+ # documentation in sync more easily.
113
+ parser = argparse.ArgumentParser(
114
+ description=description.replace(" ```\n", ""),
115
+ formatter_class=RawTextHelpFormatter,
116
+ )
117
+
118
+ parser.add_argument(
119
+ "--list_models",
120
+ type=str2bool,
121
+ nargs="?",
122
+ const=True,
123
+ default=False,
124
+ help="list available pre-trained TTS and vocoder models.",
125
+ )
126
+
127
+ parser.add_argument(
128
+ "--model_info_by_idx",
129
+ type=str,
130
+ default=None,
131
+ help="model info using query format: <model_type>/<model_query_idx>",
132
+ )
133
+
134
+ parser.add_argument(
135
+ "--model_info_by_name",
136
+ type=str,
137
+ default=None,
138
+ help="model info using query format: <model_type>/<language>/<dataset>/<model_name>",
139
+ )
140
+
141
+ parser.add_argument("--text", type=str, default=None, help="Text to generate speech.")
142
+
143
+ # Args for running pre-trained TTS models.
144
+ parser.add_argument(
145
+ "--model_name",
146
+ type=str,
147
+ default="tts_models/en/ljspeech/tacotron2-DDC",
148
+ help="Name of one of the pre-trained TTS models in format <language>/<dataset>/<model_name>",
149
+ )
150
+ parser.add_argument(
151
+ "--vocoder_name",
152
+ type=str,
153
+ default=None,
154
+ help="Name of one of the pre-trained vocoder models in format <language>/<dataset>/<model_name>",
155
+ )
156
+
157
+ # Args for running custom models
158
+ parser.add_argument("--config_path", default=None, type=str, help="Path to model config file.")
159
+ parser.add_argument(
160
+ "--model_path",
161
+ type=str,
162
+ default=None,
163
+ help="Path to model file.",
164
+ )
165
+ parser.add_argument(
166
+ "--out_path",
167
+ type=str,
168
+ default="tts_output.wav",
169
+ help="Output wav file path.",
170
+ )
171
+ parser.add_argument("--use_cuda", type=bool, help="Run model on CUDA.", default=False)
172
+ parser.add_argument(
173
+ "--vocoder_path",
174
+ type=str,
175
+ help="Path to vocoder model file. If it is not defined, model uses GL as vocoder. Please make sure that you installed vocoder library before (WaveRNN).",
176
+ default=None,
177
+ )
178
+ parser.add_argument("--vocoder_config_path", type=str, help="Path to vocoder model config file.", default=None)
179
+ parser.add_argument(
180
+ "--encoder_path",
181
+ type=str,
182
+ help="Path to speaker encoder model file.",
183
+ default=None,
184
+ )
185
+ parser.add_argument("--encoder_config_path", type=str, help="Path to speaker encoder config file.", default=None)
186
+
187
+ # args for coqui studio
188
+ parser.add_argument(
189
+ "--cs_model",
190
+ type=str,
191
+ help="Name of the 🐸Coqui Studio model. Available models are `XTTS`, `XTTS-multilingual`, `V1`.",
192
+ )
193
+ parser.add_argument(
194
+ "--emotion",
195
+ type=str,
196
+ help="Emotion to condition the model with. Only available for 🐸Coqui Studio `V1` model.",
197
+ default=None,
198
+ )
199
+ parser.add_argument(
200
+ "--language",
201
+ type=str,
202
+ help="Language to condition the model with. Only available for 🐸Coqui Studio `XTTS-multilingual` model.",
203
+ default=None,
204
+ )
205
+
206
+ # args for multi-speaker synthesis
207
+ parser.add_argument("--speakers_file_path", type=str, help="JSON file for multi-speaker model.", default=None)
208
+ parser.add_argument("--language_ids_file_path", type=str, help="JSON file for multi-lingual model.", default=None)
209
+ parser.add_argument(
210
+ "--speaker_idx",
211
+ type=str,
212
+ help="Target speaker ID for a multi-speaker TTS model.",
213
+ default=None,
214
+ )
215
+ parser.add_argument(
216
+ "--language_idx",
217
+ type=str,
218
+ help="Target language ID for a multi-lingual TTS model.",
219
+ default=None,
220
+ )
221
+ parser.add_argument(
222
+ "--speaker_wav",
223
+ nargs="+",
224
+ help="wav file(s) to condition a multi-speaker TTS model with a Speaker Encoder. You can give multiple file paths. The d_vectors is computed as their average.",
225
+ default=None,
226
+ )
227
+ parser.add_argument("--gst_style", help="Wav path file for GST style reference.", default=None)
228
+ parser.add_argument(
229
+ "--capacitron_style_wav", type=str, help="Wav path file for Capacitron prosody reference.", default=None
230
+ )
231
+ parser.add_argument("--capacitron_style_text", type=str, help="Transcription of the reference.", default=None)
232
+ parser.add_argument(
233
+ "--list_speaker_idxs",
234
+ help="List available speaker ids for the defined multi-speaker model.",
235
+ type=str2bool,
236
+ nargs="?",
237
+ const=True,
238
+ default=False,
239
+ )
240
+ parser.add_argument(
241
+ "--list_language_idxs",
242
+ help="List available language ids for the defined multi-lingual model.",
243
+ type=str2bool,
244
+ nargs="?",
245
+ const=True,
246
+ default=False,
247
+ )
248
+ # aux args
249
+ parser.add_argument(
250
+ "--save_spectogram",
251
+ type=bool,
252
+ help="If true save raw spectogram for further (vocoder) processing in out_path.",
253
+ default=False,
254
+ )
255
+ parser.add_argument(
256
+ "--reference_wav",
257
+ type=str,
258
+ help="Reference wav file to convert in the voice of the speaker_idx or speaker_wav",
259
+ default=None,
260
+ )
261
+ parser.add_argument(
262
+ "--reference_speaker_idx",
263
+ type=str,
264
+ help="speaker ID of the reference_wav speaker (If not provided the embedding will be computed using the Speaker Encoder).",
265
+ default=None,
266
+ )
267
+ parser.add_argument(
268
+ "--progress_bar",
269
+ type=str2bool,
270
+ help="If true shows a progress bar for the model download. Defaults to True",
271
+ default=True,
272
+ )
273
+
274
+ # voice conversion args
275
+ parser.add_argument(
276
+ "--source_wav",
277
+ type=str,
278
+ default=None,
279
+ help="Original audio file to convert in the voice of the target_wav",
280
+ )
281
+ parser.add_argument(
282
+ "--target_wav",
283
+ type=str,
284
+ default=None,
285
+ help="Target audio file to convert in the voice of the source_wav",
286
+ )
287
+
288
+ parser.add_argument(
289
+ "--voice_dir",
290
+ type=str,
291
+ default=None,
292
+ help="Voice dir for tortoise model",
293
+ )
294
+
295
+ args = parser.parse_args()
296
+
297
+ # print the description if either text or list_models is not set
298
+ check_args = [
299
+ args.text,
300
+ args.list_models,
301
+ args.list_speaker_idxs,
302
+ args.list_language_idxs,
303
+ args.reference_wav,
304
+ args.model_info_by_idx,
305
+ args.model_info_by_name,
306
+ args.source_wav,
307
+ args.target_wav,
308
+ ]
309
+ if not any(check_args):
310
+ parser.parse_args(["-h"])
311
+
312
+ # load model manager
313
+ path = Path(__file__).parent / "../.models.json"
314
+ manager = ModelManager(path, progress_bar=args.progress_bar)
315
+ api = TTS()
316
+
317
+ tts_path = None
318
+ tts_config_path = None
319
+ speakers_file_path = None
320
+ language_ids_file_path = None
321
+ vocoder_path = None
322
+ vocoder_config_path = None
323
+ encoder_path = None
324
+ encoder_config_path = None
325
+ vc_path = None
326
+ vc_config_path = None
327
+ model_dir = None
328
+
329
+ # CASE1 #list : list pre-trained TTS models
330
+ if args.list_models:
331
+ manager.add_cs_api_models(api.list_models())
332
+ manager.list_models()
333
+ sys.exit()
334
+
335
+ # CASE2 #info : model info for pre-trained TTS models
336
+ if args.model_info_by_idx:
337
+ model_query = args.model_info_by_idx
338
+ manager.model_info_by_idx(model_query)
339
+ sys.exit()
340
+
341
+ if args.model_info_by_name:
342
+ model_query_full_name = args.model_info_by_name
343
+ manager.model_info_by_full_name(model_query_full_name)
344
+ sys.exit()
345
+
346
+ # CASE3: TTS with coqui studio models
347
+ if "coqui_studio" in args.model_name:
348
+ print(" > Using 🐸Coqui Studio model: ", args.model_name)
349
+ api = TTS(model_name=args.model_name, cs_api_model=args.cs_model)
350
+ api.tts_to_file(text=args.text, emotion=args.emotion, file_path=args.out_path, language=args.language)
351
+ print(" > Saving output to ", args.out_path)
352
+ return
353
+
354
+ # CASE4: load pre-trained model paths
355
+ if args.model_name is not None and not args.model_path:
356
+ model_path, config_path, model_item = manager.download_model(args.model_name)
357
+ # tts model
358
+ if model_item["model_type"] == "tts_models":
359
+ tts_path = model_path
360
+ tts_config_path = config_path
361
+ if "default_vocoder" in model_item:
362
+ args.vocoder_name = model_item["default_vocoder"] if args.vocoder_name is None else args.vocoder_name
363
+
364
+ # voice conversion model
365
+ if model_item["model_type"] == "voice_conversion_models":
366
+ vc_path = model_path
367
+ vc_config_path = config_path
368
+
369
+ # tts model with multiple files to be loaded from the directory path
370
+ if model_item.get("author", None) == "fairseq" or isinstance(model_item["model_url"], list):
371
+ model_dir = model_path
372
+ tts_path = None
373
+ tts_config_path = None
374
+ args.vocoder_name = None
375
+
376
+ # load vocoder
377
+ if args.vocoder_name is not None and not args.vocoder_path:
378
+ vocoder_path, vocoder_config_path, _ = manager.download_model(args.vocoder_name)
379
+
380
+ # CASE5: set custom model paths
381
+ if args.model_path is not None:
382
+ tts_path = args.model_path
383
+ tts_config_path = args.config_path
384
+ speakers_file_path = args.speakers_file_path
385
+ language_ids_file_path = args.language_ids_file_path
386
+
387
+ if args.vocoder_path is not None:
388
+ vocoder_path = args.vocoder_path
389
+ vocoder_config_path = args.vocoder_config_path
390
+
391
+ if args.encoder_path is not None:
392
+ encoder_path = args.encoder_path
393
+ encoder_config_path = args.encoder_config_path
394
+
395
+ # load models
396
+ synthesizer = Synthesizer(
397
+ tts_path,
398
+ tts_config_path,
399
+ speakers_file_path,
400
+ language_ids_file_path,
401
+ vocoder_path,
402
+ vocoder_config_path,
403
+ encoder_path,
404
+ encoder_config_path,
405
+ vc_path,
406
+ vc_config_path,
407
+ model_dir,
408
+ args.voice_dir,
409
+ args.use_cuda,
410
+ )
411
+
412
+ # query speaker ids of a multi-speaker model.
413
+ if args.list_speaker_idxs:
414
+ print(
415
+ " > Available speaker ids: (Set --speaker_idx flag to one of these values to use the multi-speaker model."
416
+ )
417
+ print(synthesizer.tts_model.speaker_manager.name_to_id)
418
+ return
419
+
420
+ # query langauge ids of a multi-lingual model.
421
+ if args.list_language_idxs:
422
+ print(
423
+ " > Available language ids: (Set --language_idx flag to one of these values to use the multi-lingual model."
424
+ )
425
+ print(synthesizer.tts_model.language_manager.name_to_id)
426
+ return
427
+
428
+ # check the arguments against a multi-speaker model.
429
+ if synthesizer.tts_speakers_file and (not args.speaker_idx and not args.speaker_wav):
430
+ print(
431
+ " [!] Looks like you use a multi-speaker model. Define `--speaker_idx` to "
432
+ "select the target speaker. You can list the available speakers for this model by `--list_speaker_idxs`."
433
+ )
434
+ return
435
+
436
+ # RUN THE SYNTHESIS
437
+ if args.text:
438
+ print(" > Text: {}".format(args.text))
439
+
440
+ # kick it
441
+ if tts_path is not None:
442
+ wav = synthesizer.tts(
443
+ args.text,
444
+ speaker_name=args.speaker_idx,
445
+ language_name=args.language_idx,
446
+ speaker_wav=args.speaker_wav,
447
+ reference_wav=args.reference_wav,
448
+ style_wav=args.capacitron_style_wav,
449
+ style_text=args.capacitron_style_text,
450
+ reference_speaker_name=args.reference_speaker_idx,
451
+ )
452
+ elif vc_path is not None:
453
+ wav = synthesizer.voice_conversion(
454
+ source_wav=args.source_wav,
455
+ target_wav=args.target_wav,
456
+ )
457
+ elif model_dir is not None:
458
+ wav = synthesizer.tts(args.text, speaker_name=args.speaker_idx)
459
+
460
+ # save the results
461
+ print(" > Saving output to {}".format(args.out_path))
462
+ synthesizer.save_wav(wav, args.out_path)
463
+
464
+
465
+ if __name__ == "__main__":
466
+ main()
TTS/bin/train_encoder.py ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ import os
5
+ import sys
6
+ import time
7
+ import traceback
8
+
9
+ import torch
10
+ from torch.utils.data import DataLoader
11
+ from trainer.torch import NoamLR
12
+ from trainer.trainer_utils import get_optimizer
13
+
14
+ from TTS.encoder.dataset import EncoderDataset
15
+ from TTS.encoder.utils.generic_utils import save_best_model, save_checkpoint, setup_encoder_model
16
+ from TTS.encoder.utils.training import init_training
17
+ from TTS.encoder.utils.visual import plot_embeddings
18
+ from TTS.tts.datasets import load_tts_samples
19
+ from TTS.utils.audio import AudioProcessor
20
+ from TTS.utils.generic_utils import count_parameters, remove_experiment_folder
21
+ from TTS.utils.io import copy_model_files
22
+ from TTS.utils.samplers import PerfectBatchSampler
23
+ from TTS.utils.training import check_update
24
+
25
+ torch.backends.cudnn.enabled = True
26
+ torch.backends.cudnn.benchmark = True
27
+ torch.manual_seed(54321)
28
+ use_cuda = torch.cuda.is_available()
29
+ num_gpus = torch.cuda.device_count()
30
+ print(" > Using CUDA: ", use_cuda)
31
+ print(" > Number of GPUs: ", num_gpus)
32
+
33
+
34
+ def setup_loader(ap: AudioProcessor, is_val: bool = False, verbose: bool = False):
35
+ num_utter_per_class = c.num_utter_per_class if not is_val else c.eval_num_utter_per_class
36
+ num_classes_in_batch = c.num_classes_in_batch if not is_val else c.eval_num_classes_in_batch
37
+
38
+ dataset = EncoderDataset(
39
+ c,
40
+ ap,
41
+ meta_data_eval if is_val else meta_data_train,
42
+ voice_len=c.voice_len,
43
+ num_utter_per_class=num_utter_per_class,
44
+ num_classes_in_batch=num_classes_in_batch,
45
+ verbose=verbose,
46
+ augmentation_config=c.audio_augmentation if not is_val else None,
47
+ use_torch_spec=c.model_params.get("use_torch_spec", False),
48
+ )
49
+ # get classes list
50
+ classes = dataset.get_class_list()
51
+
52
+ sampler = PerfectBatchSampler(
53
+ dataset.items,
54
+ classes,
55
+ batch_size=num_classes_in_batch * num_utter_per_class, # total batch size
56
+ num_classes_in_batch=num_classes_in_batch,
57
+ num_gpus=1,
58
+ shuffle=not is_val,
59
+ drop_last=True,
60
+ )
61
+
62
+ if len(classes) < num_classes_in_batch:
63
+ if is_val:
64
+ raise RuntimeError(
65
+ f"config.eval_num_classes_in_batch ({num_classes_in_batch}) need to be <= {len(classes)} (Number total of Classes in the Eval dataset) !"
66
+ )
67
+ raise RuntimeError(
68
+ f"config.num_classes_in_batch ({num_classes_in_batch}) need to be <= {len(classes)} (Number total of Classes in the Train dataset) !"
69
+ )
70
+
71
+ # set the classes to avoid get wrong class_id when the number of training and eval classes are not equal
72
+ if is_val:
73
+ dataset.set_classes(train_classes)
74
+
75
+ loader = DataLoader(
76
+ dataset,
77
+ num_workers=c.num_loader_workers,
78
+ batch_sampler=sampler,
79
+ collate_fn=dataset.collate_fn,
80
+ )
81
+
82
+ return loader, classes, dataset.get_map_classid_to_classname()
83
+
84
+
85
+ def evaluation(model, criterion, data_loader, global_step):
86
+ eval_loss = 0
87
+ for _, data in enumerate(data_loader):
88
+ with torch.no_grad():
89
+ # setup input data
90
+ inputs, labels = data
91
+
92
+ # agroup samples of each class in the batch. perfect sampler produces [3,2,1,3,2,1] we need [3,3,2,2,1,1]
93
+ labels = torch.transpose(
94
+ labels.view(c.eval_num_utter_per_class, c.eval_num_classes_in_batch), 0, 1
95
+ ).reshape(labels.shape)
96
+ inputs = torch.transpose(
97
+ inputs.view(c.eval_num_utter_per_class, c.eval_num_classes_in_batch, -1), 0, 1
98
+ ).reshape(inputs.shape)
99
+
100
+ # dispatch data to GPU
101
+ if use_cuda:
102
+ inputs = inputs.cuda(non_blocking=True)
103
+ labels = labels.cuda(non_blocking=True)
104
+
105
+ # forward pass model
106
+ outputs = model(inputs)
107
+
108
+ # loss computation
109
+ loss = criterion(
110
+ outputs.view(c.eval_num_classes_in_batch, outputs.shape[0] // c.eval_num_classes_in_batch, -1), labels
111
+ )
112
+
113
+ eval_loss += loss.item()
114
+
115
+ eval_avg_loss = eval_loss / len(data_loader)
116
+ # save stats
117
+ dashboard_logger.eval_stats(global_step, {"loss": eval_avg_loss})
118
+ # plot the last batch in the evaluation
119
+ figures = {
120
+ "UMAP Plot": plot_embeddings(outputs.detach().cpu().numpy(), c.num_classes_in_batch),
121
+ }
122
+ dashboard_logger.eval_figures(global_step, figures)
123
+ return eval_avg_loss
124
+
125
+
126
+ def train(model, optimizer, scheduler, criterion, data_loader, eval_data_loader, global_step):
127
+ model.train()
128
+ best_loss = float("inf")
129
+ avg_loader_time = 0
130
+ end_time = time.time()
131
+ for epoch in range(c.epochs):
132
+ tot_loss = 0
133
+ epoch_time = 0
134
+ for _, data in enumerate(data_loader):
135
+ start_time = time.time()
136
+
137
+ # setup input data
138
+ inputs, labels = data
139
+ # agroup samples of each class in the batch. perfect sampler produces [3,2,1,3,2,1] we need [3,3,2,2,1,1]
140
+ labels = torch.transpose(labels.view(c.num_utter_per_class, c.num_classes_in_batch), 0, 1).reshape(
141
+ labels.shape
142
+ )
143
+ inputs = torch.transpose(inputs.view(c.num_utter_per_class, c.num_classes_in_batch, -1), 0, 1).reshape(
144
+ inputs.shape
145
+ )
146
+ # ToDo: move it to a unit test
147
+ # labels_converted = torch.transpose(labels.view(c.num_utter_per_class, c.num_classes_in_batch), 0, 1).reshape(labels.shape)
148
+ # inputs_converted = torch.transpose(inputs.view(c.num_utter_per_class, c.num_classes_in_batch, -1), 0, 1).reshape(inputs.shape)
149
+ # idx = 0
150
+ # for j in range(0, c.num_classes_in_batch, 1):
151
+ # for i in range(j, len(labels), c.num_classes_in_batch):
152
+ # if not torch.all(labels[i].eq(labels_converted[idx])) or not torch.all(inputs[i].eq(inputs_converted[idx])):
153
+ # print("Invalid")
154
+ # print(labels)
155
+ # exit()
156
+ # idx += 1
157
+ # labels = labels_converted
158
+ # inputs = inputs_converted
159
+
160
+ loader_time = time.time() - end_time
161
+ global_step += 1
162
+
163
+ # setup lr
164
+ if c.lr_decay:
165
+ scheduler.step()
166
+ optimizer.zero_grad()
167
+
168
+ # dispatch data to GPU
169
+ if use_cuda:
170
+ inputs = inputs.cuda(non_blocking=True)
171
+ labels = labels.cuda(non_blocking=True)
172
+
173
+ # forward pass model
174
+ outputs = model(inputs)
175
+
176
+ # loss computation
177
+ loss = criterion(
178
+ outputs.view(c.num_classes_in_batch, outputs.shape[0] // c.num_classes_in_batch, -1), labels
179
+ )
180
+ loss.backward()
181
+ grad_norm, _ = check_update(model, c.grad_clip)
182
+ optimizer.step()
183
+
184
+ step_time = time.time() - start_time
185
+ epoch_time += step_time
186
+
187
+ # acumulate the total epoch loss
188
+ tot_loss += loss.item()
189
+
190
+ # Averaged Loader Time
191
+ num_loader_workers = c.num_loader_workers if c.num_loader_workers > 0 else 1
192
+ avg_loader_time = (
193
+ 1 / num_loader_workers * loader_time + (num_loader_workers - 1) / num_loader_workers * avg_loader_time
194
+ if avg_loader_time != 0
195
+ else loader_time
196
+ )
197
+ current_lr = optimizer.param_groups[0]["lr"]
198
+
199
+ if global_step % c.steps_plot_stats == 0:
200
+ # Plot Training Epoch Stats
201
+ train_stats = {
202
+ "loss": loss.item(),
203
+ "lr": current_lr,
204
+ "grad_norm": grad_norm,
205
+ "step_time": step_time,
206
+ "avg_loader_time": avg_loader_time,
207
+ }
208
+ dashboard_logger.train_epoch_stats(global_step, train_stats)
209
+ figures = {
210
+ "UMAP Plot": plot_embeddings(outputs.detach().cpu().numpy(), c.num_classes_in_batch),
211
+ }
212
+ dashboard_logger.train_figures(global_step, figures)
213
+
214
+ if global_step % c.print_step == 0:
215
+ print(
216
+ " | > Step:{} Loss:{:.5f} GradNorm:{:.5f} "
217
+ "StepTime:{:.2f} LoaderTime:{:.2f} AvGLoaderTime:{:.2f} LR:{:.6f}".format(
218
+ global_step, loss.item(), grad_norm, step_time, loader_time, avg_loader_time, current_lr
219
+ ),
220
+ flush=True,
221
+ )
222
+
223
+ if global_step % c.save_step == 0:
224
+ # save model
225
+ save_checkpoint(model, optimizer, criterion, loss.item(), OUT_PATH, global_step, epoch)
226
+
227
+ end_time = time.time()
228
+
229
+ print("")
230
+ print(
231
+ ">>> Epoch:{} AvgLoss: {:.5f} GradNorm:{:.5f} "
232
+ "EpochTime:{:.2f} AvGLoaderTime:{:.2f} ".format(
233
+ epoch, tot_loss / len(data_loader), grad_norm, epoch_time, avg_loader_time
234
+ ),
235
+ flush=True,
236
+ )
237
+ # evaluation
238
+ if c.run_eval:
239
+ model.eval()
240
+ eval_loss = evaluation(model, criterion, eval_data_loader, global_step)
241
+ print("\n\n")
242
+ print("--> EVAL PERFORMANCE")
243
+ print(
244
+ " | > Epoch:{} AvgLoss: {:.5f} ".format(epoch, eval_loss),
245
+ flush=True,
246
+ )
247
+ # save the best checkpoint
248
+ best_loss = save_best_model(model, optimizer, criterion, eval_loss, best_loss, OUT_PATH, global_step, epoch)
249
+ model.train()
250
+
251
+ return best_loss, global_step
252
+
253
+
254
+ def main(args): # pylint: disable=redefined-outer-name
255
+ # pylint: disable=global-variable-undefined
256
+ global meta_data_train
257
+ global meta_data_eval
258
+ global train_classes
259
+
260
+ ap = AudioProcessor(**c.audio)
261
+ model = setup_encoder_model(c)
262
+
263
+ optimizer = get_optimizer(c.optimizer, c.optimizer_params, c.lr, model)
264
+
265
+ # pylint: disable=redefined-outer-name
266
+ meta_data_train, meta_data_eval = load_tts_samples(c.datasets, eval_split=True)
267
+
268
+ train_data_loader, train_classes, map_classid_to_classname = setup_loader(ap, is_val=False, verbose=True)
269
+ if c.run_eval:
270
+ eval_data_loader, _, _ = setup_loader(ap, is_val=True, verbose=True)
271
+ else:
272
+ eval_data_loader = None
273
+
274
+ num_classes = len(train_classes)
275
+ criterion = model.get_criterion(c, num_classes)
276
+
277
+ if c.loss == "softmaxproto" and c.model != "speaker_encoder":
278
+ c.map_classid_to_classname = map_classid_to_classname
279
+ copy_model_files(c, OUT_PATH)
280
+
281
+ if args.restore_path:
282
+ criterion, args.restore_step = model.load_checkpoint(
283
+ c, args.restore_path, eval=False, use_cuda=use_cuda, criterion=criterion
284
+ )
285
+ print(" > Model restored from step %d" % args.restore_step, flush=True)
286
+ else:
287
+ args.restore_step = 0
288
+
289
+ if c.lr_decay:
290
+ scheduler = NoamLR(optimizer, warmup_steps=c.warmup_steps, last_epoch=args.restore_step - 1)
291
+ else:
292
+ scheduler = None
293
+
294
+ num_params = count_parameters(model)
295
+ print("\n > Model has {} parameters".format(num_params), flush=True)
296
+
297
+ if use_cuda:
298
+ model = model.cuda()
299
+ criterion.cuda()
300
+
301
+ global_step = args.restore_step
302
+ _, global_step = train(model, optimizer, scheduler, criterion, train_data_loader, eval_data_loader, global_step)
303
+
304
+
305
+ if __name__ == "__main__":
306
+ args, c, OUT_PATH, AUDIO_PATH, c_logger, dashboard_logger = init_training()
307
+
308
+ try:
309
+ main(args)
310
+ except KeyboardInterrupt:
311
+ remove_experiment_folder(OUT_PATH)
312
+ try:
313
+ sys.exit(0)
314
+ except SystemExit:
315
+ os._exit(0) # pylint: disable=protected-access
316
+ except Exception: # pylint: disable=broad-except
317
+ remove_experiment_folder(OUT_PATH)
318
+ traceback.print_exc()
319
+ sys.exit(1)
TTS/bin/train_tts.py ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from dataclasses import dataclass, field
3
+
4
+ from trainer import Trainer, TrainerArgs
5
+
6
+ from TTS.config import load_config, register_config
7
+ from TTS.tts.datasets import load_tts_samples
8
+ from TTS.tts.models import setup_model
9
+
10
+
11
+ @dataclass
12
+ class TrainTTSArgs(TrainerArgs):
13
+ config_path: str = field(default=None, metadata={"help": "Path to the config file."})
14
+
15
+
16
+ def main():
17
+ """Run `tts` model training directly by a `config.json` file."""
18
+ # init trainer args
19
+ train_args = TrainTTSArgs()
20
+ parser = train_args.init_argparse(arg_prefix="")
21
+
22
+ # override trainer args from comman-line args
23
+ args, config_overrides = parser.parse_known_args()
24
+ train_args.parse_args(args)
25
+
26
+ # load config.json and register
27
+ if args.config_path or args.continue_path:
28
+ if args.config_path:
29
+ # init from a file
30
+ config = load_config(args.config_path)
31
+ if len(config_overrides) > 0:
32
+ config.parse_known_args(config_overrides, relaxed_parser=True)
33
+ elif args.continue_path:
34
+ # continue from a prev experiment
35
+ config = load_config(os.path.join(args.continue_path, "config.json"))
36
+ if len(config_overrides) > 0:
37
+ config.parse_known_args(config_overrides, relaxed_parser=True)
38
+ else:
39
+ # init from console args
40
+ from TTS.config.shared_configs import BaseTrainingConfig # pylint: disable=import-outside-toplevel
41
+
42
+ config_base = BaseTrainingConfig()
43
+ config_base.parse_known_args(config_overrides)
44
+ config = register_config(config_base.model)()
45
+
46
+ # load training samples
47
+ train_samples, eval_samples = load_tts_samples(
48
+ config.datasets,
49
+ eval_split=True,
50
+ eval_split_max_size=config.eval_split_max_size,
51
+ eval_split_size=config.eval_split_size,
52
+ )
53
+
54
+ # init the model from config
55
+ model = setup_model(config, train_samples + eval_samples)
56
+
57
+ # init the trainer and 🚀
58
+ trainer = Trainer(
59
+ train_args,
60
+ model.config,
61
+ config.output_path,
62
+ model=model,
63
+ train_samples=train_samples,
64
+ eval_samples=eval_samples,
65
+ parse_command_line_args=False,
66
+ )
67
+ trainer.fit()
68
+
69
+
70
+ if __name__ == "__main__":
71
+ main()
TTS/bin/train_vocoder.py ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from dataclasses import dataclass, field
3
+
4
+ from trainer import Trainer, TrainerArgs
5
+
6
+ from TTS.config import load_config, register_config
7
+ from TTS.utils.audio import AudioProcessor
8
+ from TTS.vocoder.datasets.preprocess import load_wav_data, load_wav_feat_data
9
+ from TTS.vocoder.models import setup_model
10
+
11
+
12
+ @dataclass
13
+ class TrainVocoderArgs(TrainerArgs):
14
+ config_path: str = field(default=None, metadata={"help": "Path to the config file."})
15
+
16
+
17
+ def main():
18
+ """Run `tts` model training directly by a `config.json` file."""
19
+ # init trainer args
20
+ train_args = TrainVocoderArgs()
21
+ parser = train_args.init_argparse(arg_prefix="")
22
+
23
+ # override trainer args from comman-line args
24
+ args, config_overrides = parser.parse_known_args()
25
+ train_args.parse_args(args)
26
+
27
+ # load config.json and register
28
+ if args.config_path or args.continue_path:
29
+ if args.config_path:
30
+ # init from a file
31
+ config = load_config(args.config_path)
32
+ if len(config_overrides) > 0:
33
+ config.parse_known_args(config_overrides, relaxed_parser=True)
34
+ elif args.continue_path:
35
+ # continue from a prev experiment
36
+ config = load_config(os.path.join(args.continue_path, "config.json"))
37
+ if len(config_overrides) > 0:
38
+ config.parse_known_args(config_overrides, relaxed_parser=True)
39
+ else:
40
+ # init from console args
41
+ from TTS.config.shared_configs import BaseTrainingConfig # pylint: disable=import-outside-toplevel
42
+
43
+ config_base = BaseTrainingConfig()
44
+ config_base.parse_known_args(config_overrides)
45
+ config = register_config(config_base.model)()
46
+
47
+ # load training samples
48
+ if "feature_path" in config and config.feature_path:
49
+ # load pre-computed features
50
+ print(f" > Loading features from: {config.feature_path}")
51
+ eval_samples, train_samples = load_wav_feat_data(config.data_path, config.feature_path, config.eval_split_size)
52
+ else:
53
+ # load data raw wav files
54
+ eval_samples, train_samples = load_wav_data(config.data_path, config.eval_split_size)
55
+
56
+ # setup audio processor
57
+ ap = AudioProcessor(**config.audio)
58
+
59
+ # init the model from config
60
+ model = setup_model(config)
61
+
62
+ # init the trainer and 🚀
63
+ trainer = Trainer(
64
+ train_args,
65
+ config,
66
+ config.output_path,
67
+ model=model,
68
+ train_samples=train_samples,
69
+ eval_samples=eval_samples,
70
+ training_assets={"audio_processor": ap},
71
+ parse_command_line_args=False,
72
+ )
73
+ trainer.fit()
74
+
75
+
76
+ if __name__ == "__main__":
77
+ main()
TTS/bin/tune_wavegrad.py ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Search a good noise schedule for WaveGrad for a given number of inference iterations"""
2
+ import argparse
3
+ from itertools import product as cartesian_product
4
+
5
+ import numpy as np
6
+ import torch
7
+ from torch.utils.data import DataLoader
8
+ from tqdm import tqdm
9
+
10
+ from TTS.config import load_config
11
+ from TTS.utils.audio import AudioProcessor
12
+ from TTS.vocoder.datasets.preprocess import load_wav_data
13
+ from TTS.vocoder.datasets.wavegrad_dataset import WaveGradDataset
14
+ from TTS.vocoder.models import setup_model
15
+
16
+ if __name__ == "__main__":
17
+ parser = argparse.ArgumentParser()
18
+ parser.add_argument("--model_path", type=str, help="Path to model checkpoint.")
19
+ parser.add_argument("--config_path", type=str, help="Path to model config file.")
20
+ parser.add_argument("--data_path", type=str, help="Path to data directory.")
21
+ parser.add_argument("--output_path", type=str, help="path for output file including file name and extension.")
22
+ parser.add_argument(
23
+ "--num_iter",
24
+ type=int,
25
+ help="Number of model inference iterations that you like to optimize noise schedule for.",
26
+ )
27
+ parser.add_argument("--use_cuda", action="store_true", help="enable CUDA.")
28
+ parser.add_argument("--num_samples", type=int, default=1, help="Number of datasamples used for inference.")
29
+ parser.add_argument(
30
+ "--search_depth",
31
+ type=int,
32
+ default=3,
33
+ help="Search granularity. Increasing this increases the run-time exponentially.",
34
+ )
35
+
36
+ # load config
37
+ args = parser.parse_args()
38
+ config = load_config(args.config_path)
39
+
40
+ # setup audio processor
41
+ ap = AudioProcessor(**config.audio)
42
+
43
+ # load dataset
44
+ _, train_data = load_wav_data(args.data_path, 0)
45
+ train_data = train_data[: args.num_samples]
46
+ dataset = WaveGradDataset(
47
+ ap=ap,
48
+ items=train_data,
49
+ seq_len=-1,
50
+ hop_len=ap.hop_length,
51
+ pad_short=config.pad_short,
52
+ conv_pad=config.conv_pad,
53
+ is_training=True,
54
+ return_segments=False,
55
+ use_noise_augment=False,
56
+ use_cache=False,
57
+ verbose=True,
58
+ )
59
+ loader = DataLoader(
60
+ dataset,
61
+ batch_size=1,
62
+ shuffle=False,
63
+ collate_fn=dataset.collate_full_clips,
64
+ drop_last=False,
65
+ num_workers=config.num_loader_workers,
66
+ pin_memory=False,
67
+ )
68
+
69
+ # setup the model
70
+ model = setup_model(config)
71
+ if args.use_cuda:
72
+ model.cuda()
73
+
74
+ # setup optimization parameters
75
+ base_values = sorted(10 * np.random.uniform(size=args.search_depth))
76
+ print(f" > base values: {base_values}")
77
+ exponents = 10 ** np.linspace(-6, -1, num=args.num_iter)
78
+ best_error = float("inf")
79
+ best_schedule = None # pylint: disable=C0103
80
+ total_search_iter = len(base_values) ** args.num_iter
81
+ for base in tqdm(cartesian_product(base_values, repeat=args.num_iter), total=total_search_iter):
82
+ beta = exponents * base
83
+ model.compute_noise_level(beta)
84
+ for data in loader:
85
+ mel, audio = data
86
+ y_hat = model.inference(mel.cuda() if args.use_cuda else mel)
87
+
88
+ if args.use_cuda:
89
+ y_hat = y_hat.cpu()
90
+ y_hat = y_hat.numpy()
91
+
92
+ mel_hat = []
93
+ for i in range(y_hat.shape[0]):
94
+ m = ap.melspectrogram(y_hat[i, 0])[:, :-1]
95
+ mel_hat.append(torch.from_numpy(m))
96
+
97
+ mel_hat = torch.stack(mel_hat)
98
+ mse = torch.sum((mel - mel_hat) ** 2).mean()
99
+ if mse.item() < best_error:
100
+ best_error = mse.item()
101
+ best_schedule = {"beta": beta}
102
+ print(f" > Found a better schedule. - MSE: {mse.item()}")
103
+ np.save(args.output_path, best_schedule)
TTS/config/__init__.py ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+ import re
4
+ from typing import Dict
5
+
6
+ import fsspec
7
+ import yaml
8
+ from coqpit import Coqpit
9
+
10
+ from TTS.config.shared_configs import *
11
+ from TTS.utils.generic_utils import find_module
12
+
13
+
14
+ def read_json_with_comments(json_path):
15
+ """for backward compat."""
16
+ # fallback to json
17
+ with fsspec.open(json_path, "r", encoding="utf-8") as f:
18
+ input_str = f.read()
19
+ # handle comments
20
+ input_str = re.sub(r"\\\n", "", input_str)
21
+ input_str = re.sub(r"//.*\n", "\n", input_str)
22
+ data = json.loads(input_str)
23
+ return data
24
+
25
+
26
+ def register_config(model_name: str) -> Coqpit:
27
+ """Find the right config for the given model name.
28
+
29
+ Args:
30
+ model_name (str): Model name.
31
+
32
+ Raises:
33
+ ModuleNotFoundError: No matching config for the model name.
34
+
35
+ Returns:
36
+ Coqpit: config class.
37
+ """
38
+ config_class = None
39
+ config_name = model_name + "_config"
40
+ paths = ["TTS.tts.configs", "TTS.vocoder.configs", "TTS.encoder.configs", "TTS.vc.configs"]
41
+ for path in paths:
42
+ try:
43
+ config_class = find_module(path, config_name)
44
+ except ModuleNotFoundError:
45
+ pass
46
+ if config_class is None:
47
+ raise ModuleNotFoundError(f" [!] Config for {model_name} cannot be found.")
48
+ return config_class
49
+
50
+
51
+ def _process_model_name(config_dict: Dict) -> str:
52
+ """Format the model name as expected. It is a band-aid for the old `vocoder` model names.
53
+
54
+ Args:
55
+ config_dict (Dict): A dictionary including the config fields.
56
+
57
+ Returns:
58
+ str: Formatted modelname.
59
+ """
60
+ model_name = config_dict["model"] if "model" in config_dict else config_dict["generator_model"]
61
+ model_name = model_name.replace("_generator", "").replace("_discriminator", "")
62
+ return model_name
63
+
64
+
65
+ def load_config(config_path: str) -> Coqpit:
66
+ """Import `json` or `yaml` files as TTS configs. First, load the input file as a `dict` and check the model name
67
+ to find the corresponding Config class. Then initialize the Config.
68
+
69
+ Args:
70
+ config_path (str): path to the config file.
71
+
72
+ Raises:
73
+ TypeError: given config file has an unknown type.
74
+
75
+ Returns:
76
+ Coqpit: TTS config object.
77
+ """
78
+ config_dict = {}
79
+ ext = os.path.splitext(config_path)[1]
80
+ if ext in (".yml", ".yaml"):
81
+ with fsspec.open(config_path, "r", encoding="utf-8") as f:
82
+ data = yaml.safe_load(f)
83
+ elif ext == ".json":
84
+ try:
85
+ with fsspec.open(config_path, "r", encoding="utf-8") as f:
86
+ data = json.load(f)
87
+ except json.decoder.JSONDecodeError:
88
+ # backwards compat.
89
+ data = read_json_with_comments(config_path)
90
+ else:
91
+ raise TypeError(f" [!] Unknown config file type {ext}")
92
+ config_dict.update(data)
93
+ model_name = _process_model_name(config_dict)
94
+ config_class = register_config(model_name.lower())
95
+ config = config_class()
96
+ config.from_dict(config_dict)
97
+ return config
98
+
99
+
100
+ def check_config_and_model_args(config, arg_name, value):
101
+ """Check the give argument in `config.model_args` if exist or in `config` for
102
+ the given value.
103
+
104
+ Return False if the argument does not exist in `config.model_args` or `config`.
105
+ This is to patch up the compatibility between models with and without `model_args`.
106
+
107
+ TODO: Remove this in the future with a unified approach.
108
+ """
109
+ if hasattr(config, "model_args"):
110
+ if arg_name in config.model_args:
111
+ return config.model_args[arg_name] == value
112
+ if hasattr(config, arg_name):
113
+ return config[arg_name] == value
114
+ return False
115
+
116
+
117
+ def get_from_config_or_model_args(config, arg_name):
118
+ """Get the given argument from `config.model_args` if exist or in `config`."""
119
+ if hasattr(config, "model_args"):
120
+ if arg_name in config.model_args:
121
+ return config.model_args[arg_name]
122
+ return config[arg_name]
123
+
124
+
125
+ def get_from_config_or_model_args_with_default(config, arg_name, def_val):
126
+ """Get the given argument from `config.model_args` if exist or in `config`."""
127
+ if hasattr(config, "model_args"):
128
+ if arg_name in config.model_args:
129
+ return config.model_args[arg_name]
130
+ if hasattr(config, arg_name):
131
+ return config[arg_name]
132
+ return def_val
TTS/config/shared_configs.py ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from dataclasses import asdict, dataclass
2
+ from typing import List
3
+
4
+ from coqpit import Coqpit, check_argument
5
+ from trainer import TrainerConfig
6
+
7
+
8
+ @dataclass
9
+ class BaseAudioConfig(Coqpit):
10
+ """Base config to definge audio processing parameters. It is used to initialize
11
+ ```TTS.utils.audio.AudioProcessor.```
12
+
13
+ Args:
14
+ fft_size (int):
15
+ Number of STFT frequency levels aka.size of the linear spectogram frame. Defaults to 1024.
16
+
17
+ win_length (int):
18
+ Each frame of audio is windowed by window of length ```win_length``` and then padded with zeros to match
19
+ ```fft_size```. Defaults to 1024.
20
+
21
+ hop_length (int):
22
+ Number of audio samples between adjacent STFT columns. Defaults to 1024.
23
+
24
+ frame_shift_ms (int):
25
+ Set ```hop_length``` based on milliseconds and sampling rate.
26
+
27
+ frame_length_ms (int):
28
+ Set ```win_length``` based on milliseconds and sampling rate.
29
+
30
+ stft_pad_mode (str):
31
+ Padding method used in STFT. 'reflect' or 'center'. Defaults to 'reflect'.
32
+
33
+ sample_rate (int):
34
+ Audio sampling rate. Defaults to 22050.
35
+
36
+ resample (bool):
37
+ Enable / Disable resampling audio to ```sample_rate```. Defaults to ```False```.
38
+
39
+ preemphasis (float):
40
+ Preemphasis coefficient. Defaults to 0.0.
41
+
42
+ ref_level_db (int): 20
43
+ Reference Db level to rebase the audio signal and ignore the level below. 20Db is assumed the sound of air.
44
+ Defaults to 20.
45
+
46
+ do_sound_norm (bool):
47
+ Enable / Disable sound normalization to reconcile the volume differences among samples. Defaults to False.
48
+
49
+ log_func (str):
50
+ Numpy log function used for amplitude to DB conversion. Defaults to 'np.log10'.
51
+
52
+ do_trim_silence (bool):
53
+ Enable / Disable trimming silences at the beginning and the end of the audio clip. Defaults to ```True```.
54
+
55
+ do_amp_to_db_linear (bool, optional):
56
+ enable/disable amplitude to dB conversion of linear spectrograms. Defaults to True.
57
+
58
+ do_amp_to_db_mel (bool, optional):
59
+ enable/disable amplitude to dB conversion of mel spectrograms. Defaults to True.
60
+
61
+ pitch_fmax (float, optional):
62
+ Maximum frequency of the F0 frames. Defaults to ```640```.
63
+
64
+ pitch_fmin (float, optional):
65
+ Minimum frequency of the F0 frames. Defaults to ```1```.
66
+
67
+ trim_db (int):
68
+ Silence threshold used for silence trimming. Defaults to 45.
69
+
70
+ do_rms_norm (bool, optional):
71
+ enable/disable RMS volume normalization when loading an audio file. Defaults to False.
72
+
73
+ db_level (int, optional):
74
+ dB level used for rms normalization. The range is -99 to 0. Defaults to None.
75
+
76
+ power (float):
77
+ Exponent used for expanding spectrogra levels before running Griffin Lim. It helps to reduce the
78
+ artifacts in the synthesized voice. Defaults to 1.5.
79
+
80
+ griffin_lim_iters (int):
81
+ Number of Griffing Lim iterations. Defaults to 60.
82
+
83
+ num_mels (int):
84
+ Number of mel-basis frames that defines the frame lengths of each mel-spectrogram frame. Defaults to 80.
85
+
86
+ mel_fmin (float): Min frequency level used for the mel-basis filters. ~50 for male and ~95 for female voices.
87
+ It needs to be adjusted for a dataset. Defaults to 0.
88
+
89
+ mel_fmax (float):
90
+ Max frequency level used for the mel-basis filters. It needs to be adjusted for a dataset.
91
+
92
+ spec_gain (int):
93
+ Gain applied when converting amplitude to DB. Defaults to 20.
94
+
95
+ signal_norm (bool):
96
+ enable/disable signal normalization. Defaults to True.
97
+
98
+ min_level_db (int):
99
+ minimum db threshold for the computed melspectrograms. Defaults to -100.
100
+
101
+ symmetric_norm (bool):
102
+ enable/disable symmetric normalization. If set True normalization is performed in the range [-k, k] else
103
+ [0, k], Defaults to True.
104
+
105
+ max_norm (float):
106
+ ```k``` defining the normalization range. Defaults to 4.0.
107
+
108
+ clip_norm (bool):
109
+ enable/disable clipping the our of range values in the normalized audio signal. Defaults to True.
110
+
111
+ stats_path (str):
112
+ Path to the computed stats file. Defaults to None.
113
+ """
114
+
115
+ # stft parameters
116
+ fft_size: int = 1024
117
+ win_length: int = 1024
118
+ hop_length: int = 256
119
+ frame_shift_ms: int = None
120
+ frame_length_ms: int = None
121
+ stft_pad_mode: str = "reflect"
122
+ # audio processing parameters
123
+ sample_rate: int = 22050
124
+ resample: bool = False
125
+ preemphasis: float = 0.0
126
+ ref_level_db: int = 20
127
+ do_sound_norm: bool = False
128
+ log_func: str = "np.log10"
129
+ # silence trimming
130
+ do_trim_silence: bool = True
131
+ trim_db: int = 45
132
+ # rms volume normalization
133
+ do_rms_norm: bool = False
134
+ db_level: float = None
135
+ # griffin-lim params
136
+ power: float = 1.5
137
+ griffin_lim_iters: int = 60
138
+ # mel-spec params
139
+ num_mels: int = 80
140
+ mel_fmin: float = 0.0
141
+ mel_fmax: float = None
142
+ spec_gain: int = 20
143
+ do_amp_to_db_linear: bool = True
144
+ do_amp_to_db_mel: bool = True
145
+ # f0 params
146
+ pitch_fmax: float = 640.0
147
+ pitch_fmin: float = 1.0
148
+ # normalization params
149
+ signal_norm: bool = True
150
+ min_level_db: int = -100
151
+ symmetric_norm: bool = True
152
+ max_norm: float = 4.0
153
+ clip_norm: bool = True
154
+ stats_path: str = None
155
+
156
+ def check_values(
157
+ self,
158
+ ):
159
+ """Check config fields"""
160
+ c = asdict(self)
161
+ check_argument("num_mels", c, restricted=True, min_val=10, max_val=2056)
162
+ check_argument("fft_size", c, restricted=True, min_val=128, max_val=4058)
163
+ check_argument("sample_rate", c, restricted=True, min_val=512, max_val=100000)
164
+ check_argument(
165
+ "frame_length_ms",
166
+ c,
167
+ restricted=True,
168
+ min_val=10,
169
+ max_val=1000,
170
+ alternative="win_length",
171
+ )
172
+ check_argument("frame_shift_ms", c, restricted=True, min_val=1, max_val=1000, alternative="hop_length")
173
+ check_argument("preemphasis", c, restricted=True, min_val=0, max_val=1)
174
+ check_argument("min_level_db", c, restricted=True, min_val=-1000, max_val=10)
175
+ check_argument("ref_level_db", c, restricted=True, min_val=0, max_val=1000)
176
+ check_argument("power", c, restricted=True, min_val=1, max_val=5)
177
+ check_argument("griffin_lim_iters", c, restricted=True, min_val=10, max_val=1000)
178
+
179
+ # normalization parameters
180
+ check_argument("signal_norm", c, restricted=True)
181
+ check_argument("symmetric_norm", c, restricted=True)
182
+ check_argument("max_norm", c, restricted=True, min_val=0.1, max_val=1000)
183
+ check_argument("clip_norm", c, restricted=True)
184
+ check_argument("mel_fmin", c, restricted=True, min_val=0.0, max_val=1000)
185
+ check_argument("mel_fmax", c, restricted=True, min_val=500.0, allow_none=True)
186
+ check_argument("spec_gain", c, restricted=True, min_val=1, max_val=100)
187
+ check_argument("do_trim_silence", c, restricted=True)
188
+ check_argument("trim_db", c, restricted=True)
189
+
190
+
191
+ @dataclass
192
+ class BaseDatasetConfig(Coqpit):
193
+ """Base config for TTS datasets.
194
+
195
+ Args:
196
+ formatter (str):
197
+ Formatter name that defines used formatter in ```TTS.tts.datasets.formatter```. Defaults to `""`.
198
+
199
+ dataset_name (str):
200
+ Unique name for the dataset. Defaults to `""`.
201
+
202
+ path (str):
203
+ Root path to the dataset files. Defaults to `""`.
204
+
205
+ meta_file_train (str):
206
+ Name of the dataset meta file. Or a list of speakers to be ignored at training for multi-speaker datasets.
207
+ Defaults to `""`.
208
+
209
+ ignored_speakers (List):
210
+ List of speakers IDs that are not used at the training. Default None.
211
+
212
+ language (str):
213
+ Language code of the dataset. If defined, it overrides `phoneme_language`. Defaults to `""`.
214
+
215
+ phonemizer (str):
216
+ Phonemizer used for that dataset's language. By default it uses `DEF_LANG_TO_PHONEMIZER`. Defaults to `""`.
217
+
218
+ meta_file_val (str):
219
+ Name of the dataset meta file that defines the instances used at validation.
220
+
221
+ meta_file_attn_mask (str):
222
+ Path to the file that lists the attention mask files used with models that require attention masks to
223
+ train the duration predictor.
224
+ """
225
+
226
+ formatter: str = ""
227
+ dataset_name: str = ""
228
+ path: str = ""
229
+ meta_file_train: str = ""
230
+ ignored_speakers: List[str] = None
231
+ language: str = ""
232
+ phonemizer: str = ""
233
+ meta_file_val: str = ""
234
+ meta_file_attn_mask: str = ""
235
+
236
+ def check_values(
237
+ self,
238
+ ):
239
+ """Check config fields"""
240
+ c = asdict(self)
241
+ check_argument("formatter", c, restricted=True)
242
+ check_argument("path", c, restricted=True)
243
+ check_argument("meta_file_train", c, restricted=True)
244
+ check_argument("meta_file_val", c, restricted=False)
245
+ check_argument("meta_file_attn_mask", c, restricted=False)
246
+
247
+
248
+ @dataclass
249
+ class BaseTrainingConfig(TrainerConfig):
250
+ """Base config to define the basic 🐸TTS training parameters that are shared
251
+ among all the models. It is based on ```Trainer.TrainingConfig```.
252
+
253
+ Args:
254
+ model (str):
255
+ Name of the model that is used in the training.
256
+
257
+ num_loader_workers (int):
258
+ Number of workers for training time dataloader.
259
+
260
+ num_eval_loader_workers (int):
261
+ Number of workers for evaluation time dataloader.
262
+ """
263
+
264
+ model: str = None
265
+ # dataloading
266
+ num_loader_workers: int = 0
267
+ num_eval_loader_workers: int = 0
268
+ use_noise_augment: bool = False
TTS/cs_api.py ADDED
@@ -0,0 +1,338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import http.client
2
+ import json
3
+ import os
4
+ import tempfile
5
+ import urllib.request
6
+ from typing import Tuple
7
+
8
+ import numpy as np
9
+ import requests
10
+ from scipy.io import wavfile
11
+
12
+
13
+ class Speaker(object):
14
+ """Convert dict to object."""
15
+
16
+ def __init__(self, d, is_voice=False):
17
+ self.is_voice = is_voice
18
+ for k, v in d.items():
19
+ if isinstance(k, (list, tuple)):
20
+ setattr(self, k, [Speaker(x) if isinstance(x, dict) else x for x in v])
21
+ else:
22
+ setattr(self, k, Speaker(v) if isinstance(v, dict) else v)
23
+
24
+ def __repr__(self):
25
+ return str(self.__dict__)
26
+
27
+
28
+ class CS_API:
29
+ """🐸Coqui Studio API Wrapper.
30
+
31
+ 🐸Coqui Studio is the most advanced voice generation platform. You can generate new voices by voice cloning, voice
32
+ interpolation, or our unique prompt to voice technology. It also provides a set of built-in voices with different
33
+ characteristics. You can use these voices to generate new audio files or use them in your applications.
34
+ You can use all the built-in and your own 🐸Coqui Studio speakers with this API with an API token.
35
+ You can signup to 🐸Coqui Studio from https://app.coqui.ai/auth/signup and get an API token from
36
+ https://app.coqui.ai/account. We can either enter the token as an environment variable as
37
+ `export COQUI_STUDIO_TOKEN=<token>` or pass it as `CS_API(api_token=<toke>)`.
38
+ Visit https://app.coqui.ai/api for more information.
39
+
40
+
41
+ Args:
42
+ api_token (str): 🐸Coqui Studio API token. If not provided, it will be read from the environment variable
43
+ `COQUI_STUDIO_TOKEN`.
44
+ model (str): 🐸Coqui Studio model. It can be either `V1`, `XTTS`, or `XTTS-multilang`. Default is `XTTS`.
45
+
46
+
47
+ Example listing all available speakers:
48
+ >>> from TTS.api import CS_API
49
+ >>> tts = CS_API()
50
+ >>> tts.speakers
51
+
52
+ Example listing all emotions:
53
+ >>> # emotions are only available for `V1` model
54
+ >>> from TTS.api import CS_API
55
+ >>> tts = CS_API(model="V1")
56
+ >>> tts.emotions
57
+
58
+ Example with a built-in 🐸 speaker:
59
+ >>> from TTS.api import CS_API
60
+ >>> tts = CS_API()
61
+ >>> wav, sr = api.tts("Hello world", speaker_name=tts.speakers[0].name)
62
+ >>> filepath = tts.tts_to_file(text="Hello world!", speaker_name=tts.speakers[0].name, file_path="output.wav")
63
+
64
+ Example with multi-language model:
65
+ >>> from TTS.api import CS_API
66
+ >>> tts = CS_API(model="XTTS-multilang")
67
+ >>> wav, sr = api.tts("Hello world", speaker_name=tts.speakers[0].name, language="en")
68
+ """
69
+
70
+ MODEL_ENDPOINTS = {
71
+ "V1": {
72
+ "list_speakers": "https://app.coqui.ai/api/v2/speakers",
73
+ "synthesize": "https://app.coqui.ai/api/v2/samples",
74
+ "list_voices": "https://app.coqui.ai/api/v2/voices",
75
+ },
76
+ "XTTS": {
77
+ "list_speakers": "https://app.coqui.ai/api/v2/speakers",
78
+ "synthesize": "https://app.coqui.ai/api/v2/samples/xtts/render/",
79
+ "list_voices": "https://app.coqui.ai/api/v2/voices/xtts/",
80
+ },
81
+ "XTTS-multilang": {
82
+ "list_speakers": "https://app.coqui.ai/api/v2/speakers",
83
+ "synthesize": "https://app.coqui.ai/api/v2/samples/multilingual/render/",
84
+ "list_voices": "https://app.coqui.ai/api/v2/voices/xtts/",
85
+ },
86
+ }
87
+
88
+ SUPPORTED_LANGUAGES = ["en", "es", "de", "fr", "it", "pt", "pl"]
89
+
90
+ def __init__(self, api_token=None, model="XTTS"):
91
+ self.api_token = api_token
92
+ self.model = model
93
+ self.headers = None
94
+ self._speakers = None
95
+ self._check_token()
96
+
97
+ @staticmethod
98
+ def ping_api():
99
+ URL = "https://coqui.gateway.scarf.sh/tts/api"
100
+ _ = requests.get(URL)
101
+
102
+ @property
103
+ def speakers(self):
104
+ if self._speakers is None:
105
+ self._speakers = self.list_all_speakers()
106
+ return self._speakers
107
+
108
+ @property
109
+ def emotions(self):
110
+ """Return a list of available emotions.
111
+
112
+ TODO: Get this from the API endpoint.
113
+ """
114
+ if self.model == "V1":
115
+ return ["Neutral", "Happy", "Sad", "Angry", "Dull"]
116
+ else:
117
+ raise ValueError(f"❗ Emotions are not available for {self.model}.")
118
+
119
+ def _check_token(self):
120
+ if self.api_token is None:
121
+ self.api_token = os.environ.get("COQUI_STUDIO_TOKEN")
122
+ self.headers = {"Content-Type": "application/json", "Authorization": f"Bearer {self.api_token}"}
123
+ if not self.api_token:
124
+ raise ValueError(
125
+ "No API token found for 🐸Coqui Studio voices - https://coqui.ai \n"
126
+ "Visit 🔗https://app.coqui.ai/account to get one.\n"
127
+ "Set it as an environment variable `export COQUI_STUDIO_TOKEN=<token>`\n"
128
+ ""
129
+ )
130
+
131
+ def list_all_speakers(self):
132
+ """Return both built-in Coqui Studio speakers and custom voices created by the user."""
133
+ return self.list_speakers() + self.list_voices()
134
+
135
+ def list_speakers(self):
136
+ """List built-in Coqui Studio speakers."""
137
+ self._check_token()
138
+ conn = http.client.HTTPSConnection("app.coqui.ai")
139
+ url = self.MODEL_ENDPOINTS[self.model]["list_speakers"]
140
+ conn.request("GET", f"{url}?per_page=100", headers=self.headers)
141
+ res = conn.getresponse()
142
+ data = res.read()
143
+ return [Speaker(s) for s in json.loads(data)["result"]]
144
+
145
+ def list_voices(self):
146
+ """List custom voices created by the user."""
147
+ conn = http.client.HTTPSConnection("app.coqui.ai")
148
+ url = self.MODEL_ENDPOINTS[self.model]["list_voices"]
149
+ conn.request("GET", f"{url}", headers=self.headers)
150
+ res = conn.getresponse()
151
+ data = res.read()
152
+ return [Speaker(s, True) for s in json.loads(data)["result"]]
153
+
154
+ def list_speakers_as_tts_models(self):
155
+ """List speakers in ModelManager format."""
156
+ models = []
157
+ for speaker in self.speakers:
158
+ model = f"coqui_studio/multilingual/{speaker.name}/{self.model}"
159
+ models.append(model)
160
+ return models
161
+
162
+ def name_to_speaker(self, name):
163
+ for speaker in self.speakers:
164
+ if speaker.name == name:
165
+ return speaker
166
+ raise ValueError(f"Speaker {name} not found in {self.speakers}")
167
+
168
+ def id_to_speaker(self, speaker_id):
169
+ for speaker in self.speakers:
170
+ if speaker.id == speaker_id:
171
+ return speaker
172
+ raise ValueError(f"Speaker {speaker_id} not found.")
173
+
174
+ @staticmethod
175
+ def url_to_np(url):
176
+ tmp_file, _ = urllib.request.urlretrieve(url)
177
+ rate, data = wavfile.read(tmp_file)
178
+ return data, rate
179
+
180
+ @staticmethod
181
+ def _create_payload(model, text, speaker, speed, emotion, language):
182
+ payload = {}
183
+ # if speaker.is_voice:
184
+ payload["voice_id"] = speaker.id
185
+ # else:
186
+ payload["speaker_id"] = speaker.id
187
+
188
+ if model == "V1":
189
+ payload.update(
190
+ {
191
+ "emotion": emotion,
192
+ "name": speaker.name,
193
+ "text": text,
194
+ "speed": speed,
195
+ }
196
+ )
197
+ elif model == "XTTS":
198
+ payload.update(
199
+ {
200
+ "name": speaker.name,
201
+ "text": text,
202
+ "speed": speed,
203
+ }
204
+ )
205
+ elif model == "XTTS-multilang":
206
+ payload.update(
207
+ {
208
+ "name": speaker.name,
209
+ "text": text,
210
+ "speed": speed,
211
+ "language": language,
212
+ }
213
+ )
214
+ else:
215
+ raise ValueError(f"❗ Unknown model {model}")
216
+ return payload
217
+
218
+ def _check_tts_args(self, text, speaker_name, speaker_id, emotion, speed, language):
219
+ assert text is not None, "❗ text is required for V1 model."
220
+ assert speaker_name is not None, "❗ speaker_name is required for V1 model."
221
+ if self.model == "V1":
222
+ if emotion is None:
223
+ emotion = "Neutral"
224
+ assert language is None, "❗ language is not supported for V1 model."
225
+ elif self.model == "XTTS":
226
+ assert emotion is None, f"❗ Emotions are not supported for XTTS model. Use V1 model."
227
+ assert language is None, "❗ Language is not supported for XTTS model. Use XTTS-multilang model."
228
+ elif self.model == "XTTS-multilang":
229
+ assert emotion is None, f"❗ Emotions are not supported for XTTS-multilang model. Use V1 model."
230
+ assert language is not None, "❗ Language is required for XTTS-multilang model."
231
+ assert (
232
+ language in self.SUPPORTED_LANGUAGES
233
+ ), f"❗ Language {language} is not yet supported. Use one of: en, es, de, fr, it, pt, pl"
234
+ return text, speaker_name, speaker_id, emotion, speed, language
235
+
236
+ def tts(
237
+ self,
238
+ text: str,
239
+ speaker_name: str = None,
240
+ speaker_id=None,
241
+ emotion=None,
242
+ speed=1.0,
243
+ language=None, # pylint: disable=unused-argument
244
+ ) -> Tuple[np.ndarray, int]:
245
+ """Synthesize speech from text.
246
+
247
+ Args:
248
+ text (str): Text to synthesize.
249
+ speaker_name (str): Name of the speaker. You can get the list of speakers with `list_speakers()` and
250
+ voices (user generated speakers) with `list_voices()`.
251
+ speaker_id (str): Speaker ID. If None, the speaker name is used.
252
+ emotion (str): Emotion of the speaker. One of "Neutral", "Happy", "Sad", "Angry", "Dull". Emotions are only
253
+ supported by `V1` model. Defaults to None.
254
+ speed (float): Speed of the speech. 1.0 is normal speed.
255
+ language (str): Language of the text. If None, the default language of the speaker is used. Language is only
256
+ supported by `XTTS-multilang` model. Currently supports en, de, es, fr, it, pt, pl. Defaults to "en".
257
+ """
258
+ self._check_token()
259
+ self.ping_api()
260
+
261
+ if speaker_name is None and speaker_id is None:
262
+ raise ValueError(" [!] Please provide either a `speaker_name` or a `speaker_id`.")
263
+ if speaker_id is None:
264
+ speaker = self.name_to_speaker(speaker_name)
265
+ else:
266
+ speaker = self.id_to_speaker(speaker_id)
267
+
268
+ text, speaker_name, speaker_id, emotion, speed, language = self._check_tts_args(
269
+ text, speaker_name, speaker_id, emotion, speed, language
270
+ )
271
+
272
+ conn = http.client.HTTPSConnection("app.coqui.ai")
273
+ payload = self._create_payload(self.model, text, speaker, speed, emotion, language)
274
+ url = self.MODEL_ENDPOINTS[self.model]["synthesize"]
275
+ conn.request("POST", url, json.dumps(payload), self.headers)
276
+ res = conn.getresponse()
277
+ data = res.read()
278
+ try:
279
+ wav, sr = self.url_to_np(json.loads(data)["audio_url"])
280
+ except KeyError as e:
281
+ raise ValueError(f" [!] 🐸 API returned error: {data}") from e
282
+ return wav, sr
283
+
284
+ def tts_to_file(
285
+ self,
286
+ text: str,
287
+ speaker_name: str,
288
+ speaker_id=None,
289
+ emotion=None,
290
+ speed=1.0,
291
+ language=None,
292
+ file_path: str = None,
293
+ ) -> str:
294
+ """Synthesize speech from text and save it to a file.
295
+
296
+ Args:
297
+ text (str): Text to synthesize.
298
+ speaker_name (str): Name of the speaker. You can get the list of speakers with `list_speakers()` and
299
+ voices (user generated speakers) with `list_voices()`.
300
+ speaker_id (str): Speaker ID. If None, the speaker name is used.
301
+ emotion (str): Emotion of the speaker. One of "Neutral", "Happy", "Sad", "Angry", "Dull".
302
+ speed (float): Speed of the speech. 1.0 is normal speed.
303
+ language (str): Language of the text. If None, the default language of the speaker is used. Language is only
304
+ supported by `XTTS-multilang` model. Currently supports en, de, es, fr, it, pt, pl. Defaults to "en".
305
+ file_path (str): Path to save the file. If None, a temporary file is created.
306
+ """
307
+ if file_path is None:
308
+ file_path = tempfile.mktemp(".wav")
309
+ wav, sr = self.tts(text, speaker_name, speaker_id, emotion, speed, language)
310
+ wavfile.write(file_path, sr, wav)
311
+ return file_path
312
+
313
+
314
+ if __name__ == "__main__":
315
+ import time
316
+
317
+ api = CS_API()
318
+ print(api.speakers)
319
+ print(api.list_speakers_as_tts_models())
320
+
321
+ ts = time.time()
322
+ wav, sr = api.tts("It took me quite a long time to develop a voice.", speaker_name=api.speakers[0].name)
323
+ print(f" [i] XTTS took {time.time() - ts:.2f}s")
324
+
325
+ filepath = api.tts_to_file(text="Hello world!", speaker_name=api.speakers[0].name, file_path="output.wav")
326
+
327
+ api = CS_API(model="XTTS-multilang")
328
+ print(api.speakers)
329
+
330
+ ts = time.time()
331
+ wav, sr = api.tts(
332
+ "It took me quite a long time to develop a voice.", speaker_name=api.speakers[0].name, language="en"
333
+ )
334
+ print(f" [i] XTTS took {time.time() - ts:.2f}s")
335
+
336
+ filepath = api.tts_to_file(
337
+ text="Hello world!", speaker_name=api.speakers[0].name, file_path="output.wav", language="en"
338
+ )
TTS/encoder/README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Speaker Encoder
2
+
3
+ This is an implementation of https://arxiv.org/abs/1710.10467. This model can be used for voice and speaker embedding.
4
+
5
+ With the code here you can generate d-vectors for both multi-speaker and single-speaker TTS datasets, then visualise and explore them along with the associated audio files in an interactive chart.
6
+
7
+ Below is an example showing embedding results of various speakers. You can generate the same plot with the provided notebook as demonstrated in [this video](https://youtu.be/KW3oO7JVa7Q).
8
+
9
+ ![](umap.png)
10
+
11
+ Download a pretrained model from [Released Models](https://github.com/mozilla/TTS/wiki/Released-Models) page.
12
+
13
+ To run the code, you need to follow the same flow as in TTS.
14
+
15
+ - Define 'config.json' for your needs. Note that, audio parameters should match your TTS model.
16
+ - Example training call ```python speaker_encoder/train.py --config_path speaker_encoder/config.json --data_path ~/Data/Libri-TTS/train-clean-360```
17
+ - Generate embedding vectors ```python speaker_encoder/compute_embeddings.py --use_cuda true /model/path/best_model.pth model/config/path/config.json dataset/path/ output_path``` . This code parses all .wav files at the given dataset path and generates the same folder structure under the output path with the generated embedding files.
18
+ - Watch training on Tensorboard as in TTS
TTS/encoder/__init__.py ADDED
File without changes
TTS/encoder/configs/base_encoder_config.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from dataclasses import asdict, dataclass, field
2
+ from typing import Dict, List
3
+
4
+ from coqpit import MISSING
5
+
6
+ from TTS.config.shared_configs import BaseAudioConfig, BaseDatasetConfig, BaseTrainingConfig
7
+
8
+
9
+ @dataclass
10
+ class BaseEncoderConfig(BaseTrainingConfig):
11
+ """Defines parameters for a Generic Encoder model."""
12
+
13
+ model: str = None
14
+ audio: BaseAudioConfig = field(default_factory=BaseAudioConfig)
15
+ datasets: List[BaseDatasetConfig] = field(default_factory=lambda: [BaseDatasetConfig()])
16
+ # model params
17
+ model_params: Dict = field(
18
+ default_factory=lambda: {
19
+ "model_name": "lstm",
20
+ "input_dim": 80,
21
+ "proj_dim": 256,
22
+ "lstm_dim": 768,
23
+ "num_lstm_layers": 3,
24
+ "use_lstm_with_projection": True,
25
+ }
26
+ )
27
+
28
+ audio_augmentation: Dict = field(default_factory=lambda: {})
29
+
30
+ # training params
31
+ epochs: int = 10000
32
+ loss: str = "angleproto"
33
+ grad_clip: float = 3.0
34
+ lr: float = 0.0001
35
+ optimizer: str = "radam"
36
+ optimizer_params: Dict = field(default_factory=lambda: {"betas": [0.9, 0.999], "weight_decay": 0})
37
+ lr_decay: bool = False
38
+ warmup_steps: int = 4000
39
+
40
+ # logging params
41
+ tb_model_param_stats: bool = False
42
+ steps_plot_stats: int = 10
43
+ save_step: int = 1000
44
+ print_step: int = 20
45
+ run_eval: bool = False
46
+
47
+ # data loader
48
+ num_classes_in_batch: int = MISSING
49
+ num_utter_per_class: int = MISSING
50
+ eval_num_classes_in_batch: int = None
51
+ eval_num_utter_per_class: int = None
52
+
53
+ num_loader_workers: int = MISSING
54
+ voice_len: float = 1.6
55
+
56
+ def check_values(self):
57
+ super().check_values()
58
+ c = asdict(self)
59
+ assert (
60
+ c["model_params"]["input_dim"] == self.audio.num_mels
61
+ ), " [!] model input dimendion must be equal to melspectrogram dimension."
TTS/encoder/configs/emotion_encoder_config.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from dataclasses import asdict, dataclass
2
+
3
+ from TTS.encoder.configs.base_encoder_config import BaseEncoderConfig
4
+
5
+
6
+ @dataclass
7
+ class EmotionEncoderConfig(BaseEncoderConfig):
8
+ """Defines parameters for Emotion Encoder model."""
9
+
10
+ model: str = "emotion_encoder"
11
+ map_classid_to_classname: dict = None
12
+ class_name_key: str = "emotion_name"
TTS/encoder/configs/speaker_encoder_config.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from dataclasses import asdict, dataclass
2
+
3
+ from TTS.encoder.configs.base_encoder_config import BaseEncoderConfig
4
+
5
+
6
+ @dataclass
7
+ class SpeakerEncoderConfig(BaseEncoderConfig):
8
+ """Defines parameters for Speaker Encoder model."""
9
+
10
+ model: str = "speaker_encoder"
11
+ class_name_key: str = "speaker_name"
TTS/encoder/dataset.py ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import random
2
+
3
+ import torch
4
+ from torch.utils.data import Dataset
5
+
6
+ from TTS.encoder.utils.generic_utils import AugmentWAV
7
+
8
+
9
+ class EncoderDataset(Dataset):
10
+ def __init__(
11
+ self,
12
+ config,
13
+ ap,
14
+ meta_data,
15
+ voice_len=1.6,
16
+ num_classes_in_batch=64,
17
+ num_utter_per_class=10,
18
+ verbose=False,
19
+ augmentation_config=None,
20
+ use_torch_spec=None,
21
+ ):
22
+ """
23
+ Args:
24
+ ap (TTS.tts.utils.AudioProcessor): audio processor object.
25
+ meta_data (list): list of dataset instances.
26
+ seq_len (int): voice segment length in seconds.
27
+ verbose (bool): print diagnostic information.
28
+ """
29
+ super().__init__()
30
+ self.config = config
31
+ self.items = meta_data
32
+ self.sample_rate = ap.sample_rate
33
+ self.seq_len = int(voice_len * self.sample_rate)
34
+ self.num_utter_per_class = num_utter_per_class
35
+ self.ap = ap
36
+ self.verbose = verbose
37
+ self.use_torch_spec = use_torch_spec
38
+ self.classes, self.items = self.__parse_items()
39
+
40
+ self.classname_to_classid = {key: i for i, key in enumerate(self.classes)}
41
+
42
+ # Data Augmentation
43
+ self.augmentator = None
44
+ self.gaussian_augmentation_config = None
45
+ if augmentation_config:
46
+ self.data_augmentation_p = augmentation_config["p"]
47
+ if self.data_augmentation_p and ("additive" in augmentation_config or "rir" in augmentation_config):
48
+ self.augmentator = AugmentWAV(ap, augmentation_config)
49
+
50
+ if "gaussian" in augmentation_config.keys():
51
+ self.gaussian_augmentation_config = augmentation_config["gaussian"]
52
+
53
+ if self.verbose:
54
+ print("\n > DataLoader initialization")
55
+ print(f" | > Classes per Batch: {num_classes_in_batch}")
56
+ print(f" | > Number of instances : {len(self.items)}")
57
+ print(f" | > Sequence length: {self.seq_len}")
58
+ print(f" | > Num Classes: {len(self.classes)}")
59
+ print(f" | > Classes: {self.classes}")
60
+
61
+ def load_wav(self, filename):
62
+ audio = self.ap.load_wav(filename, sr=self.ap.sample_rate)
63
+ return audio
64
+
65
+ def __parse_items(self):
66
+ class_to_utters = {}
67
+ for item in self.items:
68
+ path_ = item["audio_file"]
69
+ class_name = item[self.config.class_name_key]
70
+ if class_name in class_to_utters.keys():
71
+ class_to_utters[class_name].append(path_)
72
+ else:
73
+ class_to_utters[class_name] = [
74
+ path_,
75
+ ]
76
+
77
+ # skip classes with number of samples >= self.num_utter_per_class
78
+ class_to_utters = {k: v for (k, v) in class_to_utters.items() if len(v) >= self.num_utter_per_class}
79
+
80
+ classes = list(class_to_utters.keys())
81
+ classes.sort()
82
+
83
+ new_items = []
84
+ for item in self.items:
85
+ path_ = item["audio_file"]
86
+ class_name = item["emotion_name"] if self.config.model == "emotion_encoder" else item["speaker_name"]
87
+ # ignore filtered classes
88
+ if class_name not in classes:
89
+ continue
90
+ # ignore small audios
91
+ if self.load_wav(path_).shape[0] - self.seq_len <= 0:
92
+ continue
93
+
94
+ new_items.append({"wav_file_path": path_, "class_name": class_name})
95
+
96
+ return classes, new_items
97
+
98
+ def __len__(self):
99
+ return len(self.items)
100
+
101
+ def get_num_classes(self):
102
+ return len(self.classes)
103
+
104
+ def get_class_list(self):
105
+ return self.classes
106
+
107
+ def set_classes(self, classes):
108
+ self.classes = classes
109
+ self.classname_to_classid = {key: i for i, key in enumerate(self.classes)}
110
+
111
+ def get_map_classid_to_classname(self):
112
+ return dict((c_id, c_n) for c_n, c_id in self.classname_to_classid.items())
113
+
114
+ def __getitem__(self, idx):
115
+ return self.items[idx]
116
+
117
+ def collate_fn(self, batch):
118
+ # get the batch class_ids
119
+ labels = []
120
+ feats = []
121
+ for item in batch:
122
+ utter_path = item["wav_file_path"]
123
+ class_name = item["class_name"]
124
+
125
+ # get classid
126
+ class_id = self.classname_to_classid[class_name]
127
+ # load wav file
128
+ wav = self.load_wav(utter_path)
129
+ offset = random.randint(0, wav.shape[0] - self.seq_len)
130
+ wav = wav[offset : offset + self.seq_len]
131
+
132
+ if self.augmentator is not None and self.data_augmentation_p:
133
+ if random.random() < self.data_augmentation_p:
134
+ wav = self.augmentator.apply_one(wav)
135
+
136
+ if not self.use_torch_spec:
137
+ mel = self.ap.melspectrogram(wav)
138
+ feats.append(torch.FloatTensor(mel))
139
+ else:
140
+ feats.append(torch.FloatTensor(wav))
141
+
142
+ labels.append(class_id)
143
+
144
+ feats = torch.stack(feats)
145
+ labels = torch.LongTensor(labels)
146
+
147
+ return feats, labels
TTS/encoder/losses.py ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ import torch.nn.functional as F
3
+ from torch import nn
4
+
5
+
6
+ # adapted from https://github.com/cvqluu/GE2E-Loss
7
+ class GE2ELoss(nn.Module):
8
+ def __init__(self, init_w=10.0, init_b=-5.0, loss_method="softmax"):
9
+ """
10
+ Implementation of the Generalized End-to-End loss defined in https://arxiv.org/abs/1710.10467 [1]
11
+ Accepts an input of size (N, M, D)
12
+ where N is the number of speakers in the batch,
13
+ M is the number of utterances per speaker,
14
+ and D is the dimensionality of the embedding vector (e.g. d-vector)
15
+ Args:
16
+ - init_w (float): defines the initial value of w in Equation (5) of [1]
17
+ - init_b (float): definies the initial value of b in Equation (5) of [1]
18
+ """
19
+ super().__init__()
20
+ # pylint: disable=E1102
21
+ self.w = nn.Parameter(torch.tensor(init_w))
22
+ # pylint: disable=E1102
23
+ self.b = nn.Parameter(torch.tensor(init_b))
24
+ self.loss_method = loss_method
25
+
26
+ print(" > Initialized Generalized End-to-End loss")
27
+
28
+ assert self.loss_method in ["softmax", "contrast"]
29
+
30
+ if self.loss_method == "softmax":
31
+ self.embed_loss = self.embed_loss_softmax
32
+ if self.loss_method == "contrast":
33
+ self.embed_loss = self.embed_loss_contrast
34
+
35
+ # pylint: disable=R0201
36
+ def calc_new_centroids(self, dvecs, centroids, spkr, utt):
37
+ """
38
+ Calculates the new centroids excluding the reference utterance
39
+ """
40
+ excl = torch.cat((dvecs[spkr, :utt], dvecs[spkr, utt + 1 :]))
41
+ excl = torch.mean(excl, 0)
42
+ new_centroids = []
43
+ for i, centroid in enumerate(centroids):
44
+ if i == spkr:
45
+ new_centroids.append(excl)
46
+ else:
47
+ new_centroids.append(centroid)
48
+ return torch.stack(new_centroids)
49
+
50
+ def calc_cosine_sim(self, dvecs, centroids):
51
+ """
52
+ Make the cosine similarity matrix with dims (N,M,N)
53
+ """
54
+ cos_sim_matrix = []
55
+ for spkr_idx, speaker in enumerate(dvecs):
56
+ cs_row = []
57
+ for utt_idx, utterance in enumerate(speaker):
58
+ new_centroids = self.calc_new_centroids(dvecs, centroids, spkr_idx, utt_idx)
59
+ # vector based cosine similarity for speed
60
+ cs_row.append(
61
+ torch.clamp(
62
+ torch.mm(
63
+ utterance.unsqueeze(1).transpose(0, 1),
64
+ new_centroids.transpose(0, 1),
65
+ )
66
+ / (torch.norm(utterance) * torch.norm(new_centroids, dim=1)),
67
+ 1e-6,
68
+ )
69
+ )
70
+ cs_row = torch.cat(cs_row, dim=0)
71
+ cos_sim_matrix.append(cs_row)
72
+ return torch.stack(cos_sim_matrix)
73
+
74
+ # pylint: disable=R0201
75
+ def embed_loss_softmax(self, dvecs, cos_sim_matrix):
76
+ """
77
+ Calculates the loss on each embedding $L(e_{ji})$ by taking softmax
78
+ """
79
+ N, M, _ = dvecs.shape
80
+ L = []
81
+ for j in range(N):
82
+ L_row = []
83
+ for i in range(M):
84
+ L_row.append(-F.log_softmax(cos_sim_matrix[j, i], 0)[j])
85
+ L_row = torch.stack(L_row)
86
+ L.append(L_row)
87
+ return torch.stack(L)
88
+
89
+ # pylint: disable=R0201
90
+ def embed_loss_contrast(self, dvecs, cos_sim_matrix):
91
+ """
92
+ Calculates the loss on each embedding $L(e_{ji})$ by contrast loss with closest centroid
93
+ """
94
+ N, M, _ = dvecs.shape
95
+ L = []
96
+ for j in range(N):
97
+ L_row = []
98
+ for i in range(M):
99
+ centroids_sigmoids = torch.sigmoid(cos_sim_matrix[j, i])
100
+ excl_centroids_sigmoids = torch.cat((centroids_sigmoids[:j], centroids_sigmoids[j + 1 :]))
101
+ L_row.append(1.0 - torch.sigmoid(cos_sim_matrix[j, i, j]) + torch.max(excl_centroids_sigmoids))
102
+ L_row = torch.stack(L_row)
103
+ L.append(L_row)
104
+ return torch.stack(L)
105
+
106
+ def forward(self, x, _label=None):
107
+ """
108
+ Calculates the GE2E loss for an input of dimensions (num_speakers, num_utts_per_speaker, dvec_feats)
109
+ """
110
+
111
+ assert x.size()[1] >= 2
112
+
113
+ centroids = torch.mean(x, 1)
114
+ cos_sim_matrix = self.calc_cosine_sim(x, centroids)
115
+ torch.clamp(self.w, 1e-6)
116
+ cos_sim_matrix = self.w * cos_sim_matrix + self.b
117
+ L = self.embed_loss(x, cos_sim_matrix)
118
+ return L.mean()
119
+
120
+
121
+ # adapted from https://github.com/clovaai/voxceleb_trainer/blob/master/loss/angleproto.py
122
+ class AngleProtoLoss(nn.Module):
123
+ """
124
+ Implementation of the Angular Prototypical loss defined in https://arxiv.org/abs/2003.11982
125
+ Accepts an input of size (N, M, D)
126
+ where N is the number of speakers in the batch,
127
+ M is the number of utterances per speaker,
128
+ and D is the dimensionality of the embedding vector
129
+ Args:
130
+ - init_w (float): defines the initial value of w
131
+ - init_b (float): definies the initial value of b
132
+ """
133
+
134
+ def __init__(self, init_w=10.0, init_b=-5.0):
135
+ super().__init__()
136
+ # pylint: disable=E1102
137
+ self.w = nn.Parameter(torch.tensor(init_w))
138
+ # pylint: disable=E1102
139
+ self.b = nn.Parameter(torch.tensor(init_b))
140
+ self.criterion = torch.nn.CrossEntropyLoss()
141
+
142
+ print(" > Initialized Angular Prototypical loss")
143
+
144
+ def forward(self, x, _label=None):
145
+ """
146
+ Calculates the AngleProto loss for an input of dimensions (num_speakers, num_utts_per_speaker, dvec_feats)
147
+ """
148
+
149
+ assert x.size()[1] >= 2
150
+
151
+ out_anchor = torch.mean(x[:, 1:, :], 1)
152
+ out_positive = x[:, 0, :]
153
+ num_speakers = out_anchor.size()[0]
154
+
155
+ cos_sim_matrix = F.cosine_similarity(
156
+ out_positive.unsqueeze(-1).expand(-1, -1, num_speakers),
157
+ out_anchor.unsqueeze(-1).expand(-1, -1, num_speakers).transpose(0, 2),
158
+ )
159
+ torch.clamp(self.w, 1e-6)
160
+ cos_sim_matrix = cos_sim_matrix * self.w + self.b
161
+ label = torch.arange(num_speakers).to(cos_sim_matrix.device)
162
+ L = self.criterion(cos_sim_matrix, label)
163
+ return L
164
+
165
+
166
+ class SoftmaxLoss(nn.Module):
167
+ """
168
+ Implementation of the Softmax loss as defined in https://arxiv.org/abs/2003.11982
169
+ Args:
170
+ - embedding_dim (float): speaker embedding dim
171
+ - n_speakers (float): number of speakers
172
+ """
173
+
174
+ def __init__(self, embedding_dim, n_speakers):
175
+ super().__init__()
176
+
177
+ self.criterion = torch.nn.CrossEntropyLoss()
178
+ self.fc = nn.Linear(embedding_dim, n_speakers)
179
+
180
+ print("Initialised Softmax Loss")
181
+
182
+ def forward(self, x, label=None):
183
+ # reshape for compatibility
184
+ x = x.reshape(-1, x.size()[-1])
185
+ label = label.reshape(-1)
186
+
187
+ x = self.fc(x)
188
+ L = self.criterion(x, label)
189
+
190
+ return L
191
+
192
+ def inference(self, embedding):
193
+ x = self.fc(embedding)
194
+ activations = torch.nn.functional.softmax(x, dim=1).squeeze(0)
195
+ class_id = torch.argmax(activations)
196
+ return class_id
197
+
198
+
199
+ class SoftmaxAngleProtoLoss(nn.Module):
200
+ """
201
+ Implementation of the Softmax AnglePrototypical loss as defined in https://arxiv.org/abs/2009.14153
202
+ Args:
203
+ - embedding_dim (float): speaker embedding dim
204
+ - n_speakers (float): number of speakers
205
+ - init_w (float): defines the initial value of w
206
+ - init_b (float): definies the initial value of b
207
+ """
208
+
209
+ def __init__(self, embedding_dim, n_speakers, init_w=10.0, init_b=-5.0):
210
+ super().__init__()
211
+
212
+ self.softmax = SoftmaxLoss(embedding_dim, n_speakers)
213
+ self.angleproto = AngleProtoLoss(init_w, init_b)
214
+
215
+ print("Initialised SoftmaxAnglePrototypical Loss")
216
+
217
+ def forward(self, x, label=None):
218
+ """
219
+ Calculates the SoftmaxAnglePrototypical loss for an input of dimensions (num_speakers, num_utts_per_speaker, dvec_feats)
220
+ """
221
+
222
+ Lp = self.angleproto(x)
223
+
224
+ Ls = self.softmax(x, label)
225
+
226
+ return Ls + Lp
TTS/encoder/models/base_encoder.py ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import torch
3
+ import torchaudio
4
+ from coqpit import Coqpit
5
+ from torch import nn
6
+
7
+ from TTS.encoder.losses import AngleProtoLoss, GE2ELoss, SoftmaxAngleProtoLoss
8
+ from TTS.utils.generic_utils import set_init_dict
9
+ from TTS.utils.io import load_fsspec
10
+
11
+
12
+ class PreEmphasis(nn.Module):
13
+ def __init__(self, coefficient=0.97):
14
+ super().__init__()
15
+ self.coefficient = coefficient
16
+ self.register_buffer("filter", torch.FloatTensor([-self.coefficient, 1.0]).unsqueeze(0).unsqueeze(0))
17
+
18
+ def forward(self, x):
19
+ assert len(x.size()) == 2
20
+
21
+ x = torch.nn.functional.pad(x.unsqueeze(1), (1, 0), "reflect")
22
+ return torch.nn.functional.conv1d(x, self.filter).squeeze(1)
23
+
24
+
25
+ class BaseEncoder(nn.Module):
26
+ """Base `encoder` class. Every new `encoder` model must inherit this.
27
+
28
+ It defines common `encoder` specific functions.
29
+ """
30
+
31
+ # pylint: disable=W0102
32
+ def __init__(self):
33
+ super(BaseEncoder, self).__init__()
34
+
35
+ def get_torch_mel_spectrogram_class(self, audio_config):
36
+ return torch.nn.Sequential(
37
+ PreEmphasis(audio_config["preemphasis"]),
38
+ # TorchSTFT(
39
+ # n_fft=audio_config["fft_size"],
40
+ # hop_length=audio_config["hop_length"],
41
+ # win_length=audio_config["win_length"],
42
+ # sample_rate=audio_config["sample_rate"],
43
+ # window="hamming_window",
44
+ # mel_fmin=0.0,
45
+ # mel_fmax=None,
46
+ # use_htk=True,
47
+ # do_amp_to_db=False,
48
+ # n_mels=audio_config["num_mels"],
49
+ # power=2.0,
50
+ # use_mel=True,
51
+ # mel_norm=None,
52
+ # )
53
+ torchaudio.transforms.MelSpectrogram(
54
+ sample_rate=audio_config["sample_rate"],
55
+ n_fft=audio_config["fft_size"],
56
+ win_length=audio_config["win_length"],
57
+ hop_length=audio_config["hop_length"],
58
+ window_fn=torch.hamming_window,
59
+ n_mels=audio_config["num_mels"],
60
+ ),
61
+ )
62
+
63
+ @torch.no_grad()
64
+ def inference(self, x, l2_norm=True):
65
+ return self.forward(x, l2_norm)
66
+
67
+ @torch.no_grad()
68
+ def compute_embedding(self, x, num_frames=250, num_eval=10, return_mean=True, l2_norm=True):
69
+ """
70
+ Generate embeddings for a batch of utterances
71
+ x: 1xTxD
72
+ """
73
+ # map to the waveform size
74
+ if self.use_torch_spec:
75
+ num_frames = num_frames * self.audio_config["hop_length"]
76
+
77
+ max_len = x.shape[1]
78
+
79
+ if max_len < num_frames:
80
+ num_frames = max_len
81
+
82
+ offsets = np.linspace(0, max_len - num_frames, num=num_eval)
83
+
84
+ frames_batch = []
85
+ for offset in offsets:
86
+ offset = int(offset)
87
+ end_offset = int(offset + num_frames)
88
+ frames = x[:, offset:end_offset]
89
+ frames_batch.append(frames)
90
+
91
+ frames_batch = torch.cat(frames_batch, dim=0)
92
+ embeddings = self.inference(frames_batch, l2_norm=l2_norm)
93
+
94
+ if return_mean:
95
+ embeddings = torch.mean(embeddings, dim=0, keepdim=True)
96
+ return embeddings
97
+
98
+ def get_criterion(self, c: Coqpit, num_classes=None):
99
+ if c.loss == "ge2e":
100
+ criterion = GE2ELoss(loss_method="softmax")
101
+ elif c.loss == "angleproto":
102
+ criterion = AngleProtoLoss()
103
+ elif c.loss == "softmaxproto":
104
+ criterion = SoftmaxAngleProtoLoss(c.model_params["proj_dim"], num_classes)
105
+ else:
106
+ raise Exception("The %s not is a loss supported" % c.loss)
107
+ return criterion
108
+
109
+ def load_checkpoint(
110
+ self,
111
+ config: Coqpit,
112
+ checkpoint_path: str,
113
+ eval: bool = False,
114
+ use_cuda: bool = False,
115
+ criterion=None,
116
+ cache=False,
117
+ ):
118
+ state = load_fsspec(checkpoint_path, map_location=torch.device("cpu"), cache=cache)
119
+ try:
120
+ self.load_state_dict(state["model"])
121
+ print(" > Model fully restored. ")
122
+ except (KeyError, RuntimeError) as error:
123
+ # If eval raise the error
124
+ if eval:
125
+ raise error
126
+
127
+ print(" > Partial model initialization.")
128
+ model_dict = self.state_dict()
129
+ model_dict = set_init_dict(model_dict, state["model"], c)
130
+ self.load_state_dict(model_dict)
131
+ del model_dict
132
+
133
+ # load the criterion for restore_path
134
+ if criterion is not None and "criterion" in state:
135
+ try:
136
+ criterion.load_state_dict(state["criterion"])
137
+ except (KeyError, RuntimeError) as error:
138
+ print(" > Criterion load ignored because of:", error)
139
+
140
+ # instance and load the criterion for the encoder classifier in inference time
141
+ if (
142
+ eval
143
+ and criterion is None
144
+ and "criterion" in state
145
+ and getattr(config, "map_classid_to_classname", None) is not None
146
+ ):
147
+ criterion = self.get_criterion(config, len(config.map_classid_to_classname))
148
+ criterion.load_state_dict(state["criterion"])
149
+
150
+ if use_cuda:
151
+ self.cuda()
152
+ if criterion is not None:
153
+ criterion = criterion.cuda()
154
+
155
+ if eval:
156
+ self.eval()
157
+ assert not self.training
158
+
159
+ if not eval:
160
+ return criterion, state["step"]
161
+ return criterion
TTS/encoder/models/lstm.py ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from torch import nn
3
+
4
+ from TTS.encoder.models.base_encoder import BaseEncoder
5
+
6
+
7
+ class LSTMWithProjection(nn.Module):
8
+ def __init__(self, input_size, hidden_size, proj_size):
9
+ super().__init__()
10
+ self.input_size = input_size
11
+ self.hidden_size = hidden_size
12
+ self.proj_size = proj_size
13
+ self.lstm = nn.LSTM(input_size, hidden_size, batch_first=True)
14
+ self.linear = nn.Linear(hidden_size, proj_size, bias=False)
15
+
16
+ def forward(self, x):
17
+ self.lstm.flatten_parameters()
18
+ o, (_, _) = self.lstm(x)
19
+ return self.linear(o)
20
+
21
+
22
+ class LSTMWithoutProjection(nn.Module):
23
+ def __init__(self, input_dim, lstm_dim, proj_dim, num_lstm_layers):
24
+ super().__init__()
25
+ self.lstm = nn.LSTM(input_size=input_dim, hidden_size=lstm_dim, num_layers=num_lstm_layers, batch_first=True)
26
+ self.linear = nn.Linear(lstm_dim, proj_dim, bias=True)
27
+ self.relu = nn.ReLU()
28
+
29
+ def forward(self, x):
30
+ _, (hidden, _) = self.lstm(x)
31
+ return self.relu(self.linear(hidden[-1]))
32
+
33
+
34
+ class LSTMSpeakerEncoder(BaseEncoder):
35
+ def __init__(
36
+ self,
37
+ input_dim,
38
+ proj_dim=256,
39
+ lstm_dim=768,
40
+ num_lstm_layers=3,
41
+ use_lstm_with_projection=True,
42
+ use_torch_spec=False,
43
+ audio_config=None,
44
+ ):
45
+ super().__init__()
46
+ self.use_lstm_with_projection = use_lstm_with_projection
47
+ self.use_torch_spec = use_torch_spec
48
+ self.audio_config = audio_config
49
+ self.proj_dim = proj_dim
50
+
51
+ layers = []
52
+ # choise LSTM layer
53
+ if use_lstm_with_projection:
54
+ layers.append(LSTMWithProjection(input_dim, lstm_dim, proj_dim))
55
+ for _ in range(num_lstm_layers - 1):
56
+ layers.append(LSTMWithProjection(proj_dim, lstm_dim, proj_dim))
57
+ self.layers = nn.Sequential(*layers)
58
+ else:
59
+ self.layers = LSTMWithoutProjection(input_dim, lstm_dim, proj_dim, num_lstm_layers)
60
+
61
+ self.instancenorm = nn.InstanceNorm1d(input_dim)
62
+
63
+ if self.use_torch_spec:
64
+ self.torch_spec = self.get_torch_mel_spectrogram_class(audio_config)
65
+ else:
66
+ self.torch_spec = None
67
+
68
+ self._init_layers()
69
+
70
+ def _init_layers(self):
71
+ for name, param in self.layers.named_parameters():
72
+ if "bias" in name:
73
+ nn.init.constant_(param, 0.0)
74
+ elif "weight" in name:
75
+ nn.init.xavier_normal_(param)
76
+
77
+ def forward(self, x, l2_norm=True):
78
+ """Forward pass of the model.
79
+
80
+ Args:
81
+ x (Tensor): Raw waveform signal or spectrogram frames. If input is a waveform, `torch_spec` must be `True`
82
+ to compute the spectrogram on-the-fly.
83
+ l2_norm (bool): Whether to L2-normalize the outputs.
84
+
85
+ Shapes:
86
+ - x: :math:`(N, 1, T_{in})` or :math:`(N, D_{spec}, T_{in})`
87
+ """
88
+ with torch.no_grad():
89
+ with torch.cuda.amp.autocast(enabled=False):
90
+ if self.use_torch_spec:
91
+ x.squeeze_(1)
92
+ x = self.torch_spec(x)
93
+ x = self.instancenorm(x).transpose(1, 2)
94
+ d = self.layers(x)
95
+ if self.use_lstm_with_projection:
96
+ d = d[:, -1]
97
+ if l2_norm:
98
+ d = torch.nn.functional.normalize(d, p=2, dim=1)
99
+ return d
TTS/encoder/models/resnet.py ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from torch import nn
3
+
4
+ # from TTS.utils.audio.torch_transforms import TorchSTFT
5
+ from TTS.encoder.models.base_encoder import BaseEncoder
6
+
7
+
8
+ class SELayer(nn.Module):
9
+ def __init__(self, channel, reduction=8):
10
+ super(SELayer, self).__init__()
11
+ self.avg_pool = nn.AdaptiveAvgPool2d(1)
12
+ self.fc = nn.Sequential(
13
+ nn.Linear(channel, channel // reduction),
14
+ nn.ReLU(inplace=True),
15
+ nn.Linear(channel // reduction, channel),
16
+ nn.Sigmoid(),
17
+ )
18
+
19
+ def forward(self, x):
20
+ b, c, _, _ = x.size()
21
+ y = self.avg_pool(x).view(b, c)
22
+ y = self.fc(y).view(b, c, 1, 1)
23
+ return x * y
24
+
25
+
26
+ class SEBasicBlock(nn.Module):
27
+ expansion = 1
28
+
29
+ def __init__(self, inplanes, planes, stride=1, downsample=None, reduction=8):
30
+ super(SEBasicBlock, self).__init__()
31
+ self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=3, stride=stride, padding=1, bias=False)
32
+ self.bn1 = nn.BatchNorm2d(planes)
33
+ self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, padding=1, bias=False)
34
+ self.bn2 = nn.BatchNorm2d(planes)
35
+ self.relu = nn.ReLU(inplace=True)
36
+ self.se = SELayer(planes, reduction)
37
+ self.downsample = downsample
38
+ self.stride = stride
39
+
40
+ def forward(self, x):
41
+ residual = x
42
+
43
+ out = self.conv1(x)
44
+ out = self.relu(out)
45
+ out = self.bn1(out)
46
+
47
+ out = self.conv2(out)
48
+ out = self.bn2(out)
49
+ out = self.se(out)
50
+
51
+ if self.downsample is not None:
52
+ residual = self.downsample(x)
53
+
54
+ out += residual
55
+ out = self.relu(out)
56
+ return out
57
+
58
+
59
+ class ResNetSpeakerEncoder(BaseEncoder):
60
+ """Implementation of the model H/ASP without batch normalization in speaker embedding. This model was proposed in: https://arxiv.org/abs/2009.14153
61
+ Adapted from: https://github.com/clovaai/voxceleb_trainer
62
+ """
63
+
64
+ # pylint: disable=W0102
65
+ def __init__(
66
+ self,
67
+ input_dim=64,
68
+ proj_dim=512,
69
+ layers=[3, 4, 6, 3],
70
+ num_filters=[32, 64, 128, 256],
71
+ encoder_type="ASP",
72
+ log_input=False,
73
+ use_torch_spec=False,
74
+ audio_config=None,
75
+ ):
76
+ super(ResNetSpeakerEncoder, self).__init__()
77
+
78
+ self.encoder_type = encoder_type
79
+ self.input_dim = input_dim
80
+ self.log_input = log_input
81
+ self.use_torch_spec = use_torch_spec
82
+ self.audio_config = audio_config
83
+ self.proj_dim = proj_dim
84
+
85
+ self.conv1 = nn.Conv2d(1, num_filters[0], kernel_size=3, stride=1, padding=1)
86
+ self.relu = nn.ReLU(inplace=True)
87
+ self.bn1 = nn.BatchNorm2d(num_filters[0])
88
+
89
+ self.inplanes = num_filters[0]
90
+ self.layer1 = self.create_layer(SEBasicBlock, num_filters[0], layers[0])
91
+ self.layer2 = self.create_layer(SEBasicBlock, num_filters[1], layers[1], stride=(2, 2))
92
+ self.layer3 = self.create_layer(SEBasicBlock, num_filters[2], layers[2], stride=(2, 2))
93
+ self.layer4 = self.create_layer(SEBasicBlock, num_filters[3], layers[3], stride=(2, 2))
94
+
95
+ self.instancenorm = nn.InstanceNorm1d(input_dim)
96
+
97
+ if self.use_torch_spec:
98
+ self.torch_spec = self.get_torch_mel_spectrogram_class(audio_config)
99
+ else:
100
+ self.torch_spec = None
101
+
102
+ outmap_size = int(self.input_dim / 8)
103
+
104
+ self.attention = nn.Sequential(
105
+ nn.Conv1d(num_filters[3] * outmap_size, 128, kernel_size=1),
106
+ nn.ReLU(),
107
+ nn.BatchNorm1d(128),
108
+ nn.Conv1d(128, num_filters[3] * outmap_size, kernel_size=1),
109
+ nn.Softmax(dim=2),
110
+ )
111
+
112
+ if self.encoder_type == "SAP":
113
+ out_dim = num_filters[3] * outmap_size
114
+ elif self.encoder_type == "ASP":
115
+ out_dim = num_filters[3] * outmap_size * 2
116
+ else:
117
+ raise ValueError("Undefined encoder")
118
+
119
+ self.fc = nn.Linear(out_dim, proj_dim)
120
+
121
+ self._init_layers()
122
+
123
+ def _init_layers(self):
124
+ for m in self.modules():
125
+ if isinstance(m, nn.Conv2d):
126
+ nn.init.kaiming_normal_(m.weight, mode="fan_out", nonlinearity="relu")
127
+ elif isinstance(m, nn.BatchNorm2d):
128
+ nn.init.constant_(m.weight, 1)
129
+ nn.init.constant_(m.bias, 0)
130
+
131
+ def create_layer(self, block, planes, blocks, stride=1):
132
+ downsample = None
133
+ if stride != 1 or self.inplanes != planes * block.expansion:
134
+ downsample = nn.Sequential(
135
+ nn.Conv2d(self.inplanes, planes * block.expansion, kernel_size=1, stride=stride, bias=False),
136
+ nn.BatchNorm2d(planes * block.expansion),
137
+ )
138
+
139
+ layers = []
140
+ layers.append(block(self.inplanes, planes, stride, downsample))
141
+ self.inplanes = planes * block.expansion
142
+ for _ in range(1, blocks):
143
+ layers.append(block(self.inplanes, planes))
144
+
145
+ return nn.Sequential(*layers)
146
+
147
+ # pylint: disable=R0201
148
+ def new_parameter(self, *size):
149
+ out = nn.Parameter(torch.FloatTensor(*size))
150
+ nn.init.xavier_normal_(out)
151
+ return out
152
+
153
+ def forward(self, x, l2_norm=False):
154
+ """Forward pass of the model.
155
+
156
+ Args:
157
+ x (Tensor): Raw waveform signal or spectrogram frames. If input is a waveform, `torch_spec` must be `True`
158
+ to compute the spectrogram on-the-fly.
159
+ l2_norm (bool): Whether to L2-normalize the outputs.
160
+
161
+ Shapes:
162
+ - x: :math:`(N, 1, T_{in})` or :math:`(N, D_{spec}, T_{in})`
163
+ """
164
+ x.squeeze_(1)
165
+ # if you torch spec compute it otherwise use the mel spec computed by the AP
166
+ if self.use_torch_spec:
167
+ x = self.torch_spec(x)
168
+
169
+ if self.log_input:
170
+ x = (x + 1e-6).log()
171
+ x = self.instancenorm(x).unsqueeze(1)
172
+
173
+ x = self.conv1(x)
174
+ x = self.relu(x)
175
+ x = self.bn1(x)
176
+
177
+ x = self.layer1(x)
178
+ x = self.layer2(x)
179
+ x = self.layer3(x)
180
+ x = self.layer4(x)
181
+
182
+ x = x.reshape(x.size()[0], -1, x.size()[-1])
183
+
184
+ w = self.attention(x)
185
+
186
+ if self.encoder_type == "SAP":
187
+ x = torch.sum(x * w, dim=2)
188
+ elif self.encoder_type == "ASP":
189
+ mu = torch.sum(x * w, dim=2)
190
+ sg = torch.sqrt((torch.sum((x**2) * w, dim=2) - mu**2).clamp(min=1e-5))
191
+ x = torch.cat((mu, sg), 1)
192
+
193
+ x = x.view(x.size()[0], -1)
194
+ x = self.fc(x)
195
+
196
+ if l2_norm:
197
+ x = torch.nn.functional.normalize(x, p=2, dim=1)
198
+ return x
TTS/encoder/requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ umap-learn
2
+ numpy>=1.17.0
TTS/encoder/utils/__init__.py ADDED
File without changes
TTS/encoder/utils/generic_utils.py ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import datetime
2
+ import glob
3
+ import os
4
+ import random
5
+ import re
6
+
7
+ import numpy as np
8
+ from scipy import signal
9
+
10
+ from TTS.encoder.models.lstm import LSTMSpeakerEncoder
11
+ from TTS.encoder.models.resnet import ResNetSpeakerEncoder
12
+ from TTS.utils.io import save_fsspec
13
+
14
+
15
+ class AugmentWAV(object):
16
+ def __init__(self, ap, augmentation_config):
17
+ self.ap = ap
18
+ self.use_additive_noise = False
19
+
20
+ if "additive" in augmentation_config.keys():
21
+ self.additive_noise_config = augmentation_config["additive"]
22
+ additive_path = self.additive_noise_config["sounds_path"]
23
+ if additive_path:
24
+ self.use_additive_noise = True
25
+ # get noise types
26
+ self.additive_noise_types = []
27
+ for key in self.additive_noise_config.keys():
28
+ if isinstance(self.additive_noise_config[key], dict):
29
+ self.additive_noise_types.append(key)
30
+
31
+ additive_files = glob.glob(os.path.join(additive_path, "**/*.wav"), recursive=True)
32
+
33
+ self.noise_list = {}
34
+
35
+ for wav_file in additive_files:
36
+ noise_dir = wav_file.replace(additive_path, "").split(os.sep)[0]
37
+ # ignore not listed directories
38
+ if noise_dir not in self.additive_noise_types:
39
+ continue
40
+ if not noise_dir in self.noise_list:
41
+ self.noise_list[noise_dir] = []
42
+ self.noise_list[noise_dir].append(wav_file)
43
+
44
+ print(
45
+ f" | > Using Additive Noise Augmentation: with {len(additive_files)} audios instances from {self.additive_noise_types}"
46
+ )
47
+
48
+ self.use_rir = False
49
+
50
+ if "rir" in augmentation_config.keys():
51
+ self.rir_config = augmentation_config["rir"]
52
+ if self.rir_config["rir_path"]:
53
+ self.rir_files = glob.glob(os.path.join(self.rir_config["rir_path"], "**/*.wav"), recursive=True)
54
+ self.use_rir = True
55
+
56
+ print(f" | > Using RIR Noise Augmentation: with {len(self.rir_files)} audios instances")
57
+
58
+ self.create_augmentation_global_list()
59
+
60
+ def create_augmentation_global_list(self):
61
+ if self.use_additive_noise:
62
+ self.global_noise_list = self.additive_noise_types
63
+ else:
64
+ self.global_noise_list = []
65
+ if self.use_rir:
66
+ self.global_noise_list.append("RIR_AUG")
67
+
68
+ def additive_noise(self, noise_type, audio):
69
+ clean_db = 10 * np.log10(np.mean(audio**2) + 1e-4)
70
+
71
+ noise_list = random.sample(
72
+ self.noise_list[noise_type],
73
+ random.randint(
74
+ self.additive_noise_config[noise_type]["min_num_noises"],
75
+ self.additive_noise_config[noise_type]["max_num_noises"],
76
+ ),
77
+ )
78
+
79
+ audio_len = audio.shape[0]
80
+ noises_wav = None
81
+ for noise in noise_list:
82
+ noiseaudio = self.ap.load_wav(noise, sr=self.ap.sample_rate)[:audio_len]
83
+
84
+ if noiseaudio.shape[0] < audio_len:
85
+ continue
86
+
87
+ noise_snr = random.uniform(
88
+ self.additive_noise_config[noise_type]["min_snr_in_db"],
89
+ self.additive_noise_config[noise_type]["max_num_noises"],
90
+ )
91
+ noise_db = 10 * np.log10(np.mean(noiseaudio**2) + 1e-4)
92
+ noise_wav = np.sqrt(10 ** ((clean_db - noise_db - noise_snr) / 10)) * noiseaudio
93
+
94
+ if noises_wav is None:
95
+ noises_wav = noise_wav
96
+ else:
97
+ noises_wav += noise_wav
98
+
99
+ # if all possible files is less than audio, choose other files
100
+ if noises_wav is None:
101
+ return self.additive_noise(noise_type, audio)
102
+
103
+ return audio + noises_wav
104
+
105
+ def reverberate(self, audio):
106
+ audio_len = audio.shape[0]
107
+
108
+ rir_file = random.choice(self.rir_files)
109
+ rir = self.ap.load_wav(rir_file, sr=self.ap.sample_rate)
110
+ rir = rir / np.sqrt(np.sum(rir**2))
111
+ return signal.convolve(audio, rir, mode=self.rir_config["conv_mode"])[:audio_len]
112
+
113
+ def apply_one(self, audio):
114
+ noise_type = random.choice(self.global_noise_list)
115
+ if noise_type == "RIR_AUG":
116
+ return self.reverberate(audio)
117
+
118
+ return self.additive_noise(noise_type, audio)
119
+
120
+
121
+ def to_camel(text):
122
+ text = text.capitalize()
123
+ return re.sub(r"(?!^)_([a-zA-Z])", lambda m: m.group(1).upper(), text)
124
+
125
+
126
+ def setup_encoder_model(config: "Coqpit"):
127
+ if config.model_params["model_name"].lower() == "lstm":
128
+ model = LSTMSpeakerEncoder(
129
+ config.model_params["input_dim"],
130
+ config.model_params["proj_dim"],
131
+ config.model_params["lstm_dim"],
132
+ config.model_params["num_lstm_layers"],
133
+ use_torch_spec=config.model_params.get("use_torch_spec", False),
134
+ audio_config=config.audio,
135
+ )
136
+ elif config.model_params["model_name"].lower() == "resnet":
137
+ model = ResNetSpeakerEncoder(
138
+ input_dim=config.model_params["input_dim"],
139
+ proj_dim=config.model_params["proj_dim"],
140
+ log_input=config.model_params.get("log_input", False),
141
+ use_torch_spec=config.model_params.get("use_torch_spec", False),
142
+ audio_config=config.audio,
143
+ )
144
+ return model
145
+
146
+
147
+ def save_checkpoint(model, optimizer, criterion, model_loss, out_path, current_step, epoch):
148
+ checkpoint_path = "checkpoint_{}.pth".format(current_step)
149
+ checkpoint_path = os.path.join(out_path, checkpoint_path)
150
+ print(" | | > Checkpoint saving : {}".format(checkpoint_path))
151
+
152
+ new_state_dict = model.state_dict()
153
+ state = {
154
+ "model": new_state_dict,
155
+ "optimizer": optimizer.state_dict() if optimizer is not None else None,
156
+ "criterion": criterion.state_dict(),
157
+ "step": current_step,
158
+ "epoch": epoch,
159
+ "loss": model_loss,
160
+ "date": datetime.date.today().strftime("%B %d, %Y"),
161
+ }
162
+ save_fsspec(state, checkpoint_path)
163
+
164
+
165
+ def save_best_model(model, optimizer, criterion, model_loss, best_loss, out_path, current_step, epoch):
166
+ if model_loss < best_loss:
167
+ new_state_dict = model.state_dict()
168
+ state = {
169
+ "model": new_state_dict,
170
+ "optimizer": optimizer.state_dict(),
171
+ "criterion": criterion.state_dict(),
172
+ "step": current_step,
173
+ "epoch": epoch,
174
+ "loss": model_loss,
175
+ "date": datetime.date.today().strftime("%B %d, %Y"),
176
+ }
177
+ best_loss = model_loss
178
+ bestmodel_path = "best_model.pth"
179
+ bestmodel_path = os.path.join(out_path, bestmodel_path)
180
+ print("\n > BEST MODEL ({0:.5f}) : {1:}".format(model_loss, bestmodel_path))
181
+ save_fsspec(state, bestmodel_path)
182
+ return best_loss
TTS/encoder/utils/io.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import datetime
2
+ import os
3
+
4
+ from TTS.utils.io import save_fsspec
5
+
6
+
7
+ def save_checkpoint(model, optimizer, model_loss, out_path, current_step):
8
+ checkpoint_path = "checkpoint_{}.pth".format(current_step)
9
+ checkpoint_path = os.path.join(out_path, checkpoint_path)
10
+ print(" | | > Checkpoint saving : {}".format(checkpoint_path))
11
+
12
+ new_state_dict = model.state_dict()
13
+ state = {
14
+ "model": new_state_dict,
15
+ "optimizer": optimizer.state_dict() if optimizer is not None else None,
16
+ "step": current_step,
17
+ "loss": model_loss,
18
+ "date": datetime.date.today().strftime("%B %d, %Y"),
19
+ }
20
+ save_fsspec(state, checkpoint_path)
21
+
22
+
23
+ def save_best_model(model, optimizer, model_loss, best_loss, out_path, current_step):
24
+ if model_loss < best_loss:
25
+ new_state_dict = model.state_dict()
26
+ state = {
27
+ "model": new_state_dict,
28
+ "optimizer": optimizer.state_dict(),
29
+ "step": current_step,
30
+ "loss": model_loss,
31
+ "date": datetime.date.today().strftime("%B %d, %Y"),
32
+ }
33
+ best_loss = model_loss
34
+ bestmodel_path = "best_model.pth"
35
+ bestmodel_path = os.path.join(out_path, bestmodel_path)
36
+ print("\n > BEST MODEL ({0:.5f}) : {1:}".format(model_loss, bestmodel_path))
37
+ save_fsspec(state, bestmodel_path)
38
+ return best_loss
TTS/encoder/utils/prepare_voxceleb.py ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright (C) 2020 ATHENA AUTHORS; Yiping Peng; Ne Luo
3
+ # All rights reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ # ==============================================================================
17
+ # Only support eager mode and TF>=2.0.0
18
+ # pylint: disable=no-member, invalid-name, relative-beyond-top-level
19
+ # pylint: disable=too-many-locals, too-many-statements, too-many-arguments, too-many-instance-attributes
20
+ """ voxceleb 1 & 2 """
21
+
22
+ import hashlib
23
+ import os
24
+ import subprocess
25
+ import sys
26
+ import zipfile
27
+
28
+ import pandas
29
+ import soundfile as sf
30
+ from absl import logging
31
+
32
+ SUBSETS = {
33
+ "vox1_dev_wav": [
34
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox1_dev_wav_partaa",
35
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox1_dev_wav_partab",
36
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox1_dev_wav_partac",
37
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox1_dev_wav_partad",
38
+ ],
39
+ "vox1_test_wav": ["https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox1_test_wav.zip"],
40
+ "vox2_dev_aac": [
41
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partaa",
42
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partab",
43
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partac",
44
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partad",
45
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partae",
46
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partaf",
47
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partag",
48
+ "https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_dev_aac_partah",
49
+ ],
50
+ "vox2_test_aac": ["https://thor.robots.ox.ac.uk/~vgg/data/voxceleb/vox1a/vox2_test_aac.zip"],
51
+ }
52
+
53
+ MD5SUM = {
54
+ "vox1_dev_wav": "ae63e55b951748cc486645f532ba230b",
55
+ "vox2_dev_aac": "bbc063c46078a602ca71605645c2a402",
56
+ "vox1_test_wav": "185fdc63c3c739954633d50379a3d102",
57
+ "vox2_test_aac": "0d2b3ea430a821c33263b5ea37ede312",
58
+ }
59
+
60
+ USER = {"user": "", "password": ""}
61
+
62
+ speaker_id_dict = {}
63
+
64
+
65
+ def download_and_extract(directory, subset, urls):
66
+ """Download and extract the given split of dataset.
67
+
68
+ Args:
69
+ directory: the directory where to put the downloaded data.
70
+ subset: subset name of the corpus.
71
+ urls: the list of urls to download the data file.
72
+ """
73
+ os.makedirs(directory, exist_ok=True)
74
+
75
+ try:
76
+ for url in urls:
77
+ zip_filepath = os.path.join(directory, url.split("/")[-1])
78
+ if os.path.exists(zip_filepath):
79
+ continue
80
+ logging.info("Downloading %s to %s" % (url, zip_filepath))
81
+ subprocess.call(
82
+ "wget %s --user %s --password %s -O %s" % (url, USER["user"], USER["password"], zip_filepath),
83
+ shell=True,
84
+ )
85
+
86
+ statinfo = os.stat(zip_filepath)
87
+ logging.info("Successfully downloaded %s, size(bytes): %d" % (url, statinfo.st_size))
88
+
89
+ # concatenate all parts into zip files
90
+ if ".zip" not in zip_filepath:
91
+ zip_filepath = "_".join(zip_filepath.split("_")[:-1])
92
+ subprocess.call("cat %s* > %s.zip" % (zip_filepath, zip_filepath), shell=True)
93
+ zip_filepath += ".zip"
94
+ extract_path = zip_filepath.strip(".zip")
95
+
96
+ # check zip file md5sum
97
+ with open(zip_filepath, "rb") as f_zip:
98
+ md5 = hashlib.md5(f_zip.read()).hexdigest()
99
+ if md5 != MD5SUM[subset]:
100
+ raise ValueError("md5sum of %s mismatch" % zip_filepath)
101
+
102
+ with zipfile.ZipFile(zip_filepath, "r") as zfile:
103
+ zfile.extractall(directory)
104
+ extract_path_ori = os.path.join(directory, zfile.infolist()[0].filename)
105
+ subprocess.call("mv %s %s" % (extract_path_ori, extract_path), shell=True)
106
+ finally:
107
+ # os.remove(zip_filepath)
108
+ pass
109
+
110
+
111
+ def exec_cmd(cmd):
112
+ """Run a command in a subprocess.
113
+ Args:
114
+ cmd: command line to be executed.
115
+ Return:
116
+ int, the return code.
117
+ """
118
+ try:
119
+ retcode = subprocess.call(cmd, shell=True)
120
+ if retcode < 0:
121
+ logging.info(f"Child was terminated by signal {retcode}")
122
+ except OSError as e:
123
+ logging.info(f"Execution failed: {e}")
124
+ retcode = -999
125
+ return retcode
126
+
127
+
128
+ def decode_aac_with_ffmpeg(aac_file, wav_file):
129
+ """Decode a given AAC file into WAV using ffmpeg.
130
+ Args:
131
+ aac_file: file path to input AAC file.
132
+ wav_file: file path to output WAV file.
133
+ Return:
134
+ bool, True if success.
135
+ """
136
+ cmd = f"ffmpeg -i {aac_file} {wav_file}"
137
+ logging.info(f"Decoding aac file using command line: {cmd}")
138
+ ret = exec_cmd(cmd)
139
+ if ret != 0:
140
+ logging.error(f"Failed to decode aac file with retcode {ret}")
141
+ logging.error("Please check your ffmpeg installation.")
142
+ return False
143
+ return True
144
+
145
+
146
+ def convert_audio_and_make_label(input_dir, subset, output_dir, output_file):
147
+ """Optionally convert AAC to WAV and make speaker labels.
148
+ Args:
149
+ input_dir: the directory which holds the input dataset.
150
+ subset: the name of the specified subset. e.g. vox1_dev_wav
151
+ output_dir: the directory to place the newly generated csv files.
152
+ output_file: the name of the newly generated csv file. e.g. vox1_dev_wav.csv
153
+ """
154
+
155
+ logging.info("Preprocessing audio and label for subset %s" % subset)
156
+ source_dir = os.path.join(input_dir, subset)
157
+
158
+ files = []
159
+ # Convert all AAC file into WAV format. At the same time, generate the csv
160
+ for root, _, filenames in os.walk(source_dir):
161
+ for filename in filenames:
162
+ name, ext = os.path.splitext(filename)
163
+ if ext.lower() == ".wav":
164
+ _, ext2 = os.path.splitext(name)
165
+ if ext2:
166
+ continue
167
+ wav_file = os.path.join(root, filename)
168
+ elif ext.lower() == ".m4a":
169
+ # Convert AAC to WAV.
170
+ aac_file = os.path.join(root, filename)
171
+ wav_file = aac_file + ".wav"
172
+ if not os.path.exists(wav_file):
173
+ if not decode_aac_with_ffmpeg(aac_file, wav_file):
174
+ raise RuntimeError("Audio decoding failed.")
175
+ else:
176
+ continue
177
+ speaker_name = root.split(os.path.sep)[-2]
178
+ if speaker_name not in speaker_id_dict:
179
+ num = len(speaker_id_dict)
180
+ speaker_id_dict[speaker_name] = num
181
+ # wav_filesize = os.path.getsize(wav_file)
182
+ wav_length = len(sf.read(wav_file)[0])
183
+ files.append((os.path.abspath(wav_file), wav_length, speaker_id_dict[speaker_name], speaker_name))
184
+
185
+ # Write to CSV file which contains four columns:
186
+ # "wav_filename", "wav_length_ms", "speaker_id", "speaker_name".
187
+ csv_file_path = os.path.join(output_dir, output_file)
188
+ df = pandas.DataFrame(data=files, columns=["wav_filename", "wav_length_ms", "speaker_id", "speaker_name"])
189
+ df.to_csv(csv_file_path, index=False, sep="\t")
190
+ logging.info("Successfully generated csv file {}".format(csv_file_path))
191
+
192
+
193
+ def processor(directory, subset, force_process):
194
+ """download and process"""
195
+ urls = SUBSETS
196
+ if subset not in urls:
197
+ raise ValueError(subset, "is not in voxceleb")
198
+
199
+ subset_csv = os.path.join(directory, subset + ".csv")
200
+ if not force_process and os.path.exists(subset_csv):
201
+ return subset_csv
202
+
203
+ logging.info("Downloading and process the voxceleb in %s", directory)
204
+ logging.info("Preparing subset %s", subset)
205
+ download_and_extract(directory, subset, urls[subset])
206
+ convert_audio_and_make_label(directory, subset, directory, subset + ".csv")
207
+ logging.info("Finished downloading and processing")
208
+ return subset_csv
209
+
210
+
211
+ if __name__ == "__main__":
212
+ logging.set_verbosity(logging.INFO)
213
+ if len(sys.argv) != 4:
214
+ print("Usage: python prepare_data.py save_directory user password")
215
+ sys.exit()
216
+
217
+ DIR, USER["user"], USER["password"] = sys.argv[1], sys.argv[2], sys.argv[3]
218
+ for SUBSET in SUBSETS:
219
+ processor(DIR, SUBSET, False)
TTS/encoder/utils/training.py ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from dataclasses import dataclass, field
3
+
4
+ from coqpit import Coqpit
5
+ from trainer import TrainerArgs, get_last_checkpoint
6
+ from trainer.logging import logger_factory
7
+ from trainer.logging.console_logger import ConsoleLogger
8
+
9
+ from TTS.config import load_config, register_config
10
+ from TTS.tts.utils.text.characters import parse_symbols
11
+ from TTS.utils.generic_utils import get_experiment_folder_path, get_git_branch
12
+ from TTS.utils.io import copy_model_files
13
+
14
+
15
+ @dataclass
16
+ class TrainArgs(TrainerArgs):
17
+ config_path: str = field(default=None, metadata={"help": "Path to the config file."})
18
+
19
+
20
+ def getarguments():
21
+ train_config = TrainArgs()
22
+ parser = train_config.init_argparse(arg_prefix="")
23
+ return parser
24
+
25
+
26
+ def process_args(args, config=None):
27
+ """Process parsed comand line arguments and initialize the config if not provided.
28
+ Args:
29
+ args (argparse.Namespace or dict like): Parsed input arguments.
30
+ config (Coqpit): Model config. If none, it is generated from `args`. Defaults to None.
31
+ Returns:
32
+ c (TTS.utils.io.AttrDict): Config paramaters.
33
+ out_path (str): Path to save models and logging.
34
+ audio_path (str): Path to save generated test audios.
35
+ c_logger (TTS.utils.console_logger.ConsoleLogger): Class that does
36
+ logging to the console.
37
+ dashboard_logger (WandbLogger or TensorboardLogger): Class that does the dashboard Logging
38
+ TODO:
39
+ - Interactive config definition.
40
+ """
41
+ if isinstance(args, tuple):
42
+ args, coqpit_overrides = args
43
+ if args.continue_path:
44
+ # continue a previous training from its output folder
45
+ experiment_path = args.continue_path
46
+ args.config_path = os.path.join(args.continue_path, "config.json")
47
+ args.restore_path, best_model = get_last_checkpoint(args.continue_path)
48
+ if not args.best_path:
49
+ args.best_path = best_model
50
+ # init config if not already defined
51
+ if config is None:
52
+ if args.config_path:
53
+ # init from a file
54
+ config = load_config(args.config_path)
55
+ else:
56
+ # init from console args
57
+ from TTS.config.shared_configs import BaseTrainingConfig # pylint: disable=import-outside-toplevel
58
+
59
+ config_base = BaseTrainingConfig()
60
+ config_base.parse_known_args(coqpit_overrides)
61
+ config = register_config(config_base.model)()
62
+ # override values from command-line args
63
+ config.parse_known_args(coqpit_overrides, relaxed_parser=True)
64
+ experiment_path = args.continue_path
65
+ if not experiment_path:
66
+ experiment_path = get_experiment_folder_path(config.output_path, config.run_name)
67
+ audio_path = os.path.join(experiment_path, "test_audios")
68
+ config.output_log_path = experiment_path
69
+ # setup rank 0 process in distributed training
70
+ dashboard_logger = None
71
+ if args.rank == 0:
72
+ new_fields = {}
73
+ if args.restore_path:
74
+ new_fields["restore_path"] = args.restore_path
75
+ new_fields["github_branch"] = get_git_branch()
76
+ # if model characters are not set in the config file
77
+ # save the default set to the config file for future
78
+ # compatibility.
79
+ if config.has("characters") and config.characters is None:
80
+ used_characters = parse_symbols()
81
+ new_fields["characters"] = used_characters
82
+ copy_model_files(config, experiment_path, new_fields)
83
+ dashboard_logger = logger_factory(config, experiment_path)
84
+ c_logger = ConsoleLogger()
85
+ return config, experiment_path, audio_path, c_logger, dashboard_logger
86
+
87
+
88
+ def init_arguments():
89
+ train_config = TrainArgs()
90
+ parser = train_config.init_argparse(arg_prefix="")
91
+ return parser
92
+
93
+
94
+ def init_training(config: Coqpit = None):
95
+ """Initialization of a training run."""
96
+ parser = init_arguments()
97
+ args = parser.parse_known_args()
98
+ config, OUT_PATH, AUDIO_PATH, c_logger, dashboard_logger = process_args(args, config)
99
+ return args[0], config, OUT_PATH, AUDIO_PATH, c_logger, dashboard_logger
TTS/encoder/utils/visual.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import matplotlib
2
+ import matplotlib.pyplot as plt
3
+ import numpy as np
4
+ import umap
5
+
6
+ matplotlib.use("Agg")
7
+
8
+
9
+ colormap = (
10
+ np.array(
11
+ [
12
+ [76, 255, 0],
13
+ [0, 127, 70],
14
+ [255, 0, 0],
15
+ [255, 217, 38],
16
+ [0, 135, 255],
17
+ [165, 0, 165],
18
+ [255, 167, 255],
19
+ [0, 255, 255],
20
+ [255, 96, 38],
21
+ [142, 76, 0],
22
+ [33, 0, 127],
23
+ [0, 0, 0],
24
+ [183, 183, 183],
25
+ ],
26
+ dtype=float,
27
+ )
28
+ / 255
29
+ )
30
+
31
+
32
+ def plot_embeddings(embeddings, num_classes_in_batch):
33
+ num_utter_per_class = embeddings.shape[0] // num_classes_in_batch
34
+
35
+ # if necessary get just the first 10 classes
36
+ if num_classes_in_batch > 10:
37
+ num_classes_in_batch = 10
38
+ embeddings = embeddings[: num_classes_in_batch * num_utter_per_class]
39
+
40
+ model = umap.UMAP()
41
+ projection = model.fit_transform(embeddings)
42
+ ground_truth = np.repeat(np.arange(num_classes_in_batch), num_utter_per_class)
43
+ colors = [colormap[i] for i in ground_truth]
44
+ fig, ax = plt.subplots(figsize=(16, 10))
45
+ _ = ax.scatter(projection[:, 0], projection[:, 1], c=colors)
46
+ plt.gca().set_aspect("equal", "datalim")
47
+ plt.title("UMAP projection")
48
+ plt.tight_layout()
49
+ plt.savefig("umap")
50
+ return fig
TTS/model.py ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from abc import abstractmethod
2
+ from typing import Dict
3
+
4
+ import torch
5
+ from coqpit import Coqpit
6
+ from trainer import TrainerModel
7
+
8
+ # pylint: skip-file
9
+
10
+
11
+ class BaseTrainerModel(TrainerModel):
12
+ """BaseTrainerModel model expanding TrainerModel with required functions by 🐸TTS.
13
+
14
+ Every new 🐸TTS model must inherit it.
15
+ """
16
+
17
+ @staticmethod
18
+ @abstractmethod
19
+ def init_from_config(config: Coqpit):
20
+ """Init the model and all its attributes from the given config.
21
+
22
+ Override this depending on your model.
23
+ """
24
+ ...
25
+
26
+ @abstractmethod
27
+ def inference(self, input: torch.Tensor, aux_input={}) -> Dict:
28
+ """Forward pass for inference.
29
+
30
+ It must return a dictionary with the main model output and all the auxiliary outputs. The key ```model_outputs```
31
+ is considered to be the main output and you can add any other auxiliary outputs as you want.
32
+
33
+ We don't use `*kwargs` since it is problematic with the TorchScript API.
34
+
35
+ Args:
36
+ input (torch.Tensor): [description]
37
+ aux_input (Dict): Auxiliary inputs like speaker embeddings, durations etc.
38
+
39
+ Returns:
40
+ Dict: [description]
41
+ """
42
+ outputs_dict = {"model_outputs": None}
43
+ ...
44
+ return outputs_dict
45
+
46
+ @abstractmethod
47
+ def load_checkpoint(
48
+ self, config: Coqpit, checkpoint_path: str, eval: bool = False, strict: bool = True, cache=False
49
+ ) -> None:
50
+ """Load a model checkpoint gile and get ready for training or inference.
51
+
52
+ Args:
53
+ config (Coqpit): Model configuration.
54
+ checkpoint_path (str): Path to the model checkpoint file.
55
+ eval (bool, optional): If true, init model for inference else for training. Defaults to False.
56
+ strict (bool, optional): Match all checkpoint keys to model's keys. Defaults to True.
57
+ cache (bool, optional): If True, cache the file locally for subsequent calls. It is cached under `get_user_data_dir()/tts_cache`. Defaults to False.
58
+ """
59
+ ...
TTS/server/README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # :frog: TTS demo server
2
+ Before you use the server, make sure you [install](https://github.com/coqui-ai/TTS/tree/dev#install-tts)) :frog: TTS properly. Then, you can follow the steps below.
3
+
4
+ **Note:** If you install :frog:TTS using ```pip```, you can also use the ```tts-server``` end point on the terminal.
5
+
6
+ Examples runs:
7
+
8
+ List officially released models.
9
+ ```python TTS/server/server.py --list_models ```
10
+
11
+ Run the server with the official models.
12
+ ```python TTS/server/server.py --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/multiband-melgan```
13
+
14
+ Run the server with the official models on a GPU.
15
+ ```CUDA_VISIBLE_DEVICES="0" python TTS/server/server.py --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/multiband-melgan --use_cuda True```
16
+
17
+ Run the server with a custom models.
18
+ ```python TTS/server/server.py --tts_checkpoint /path/to/tts/model.pth --tts_config /path/to/tts/config.json --vocoder_checkpoint /path/to/vocoder/model.pth --vocoder_config /path/to/vocoder/config.json```
TTS/server/__init__.py ADDED
File without changes
TTS/server/conf.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tts_path":"/media/erogol/data_ssd/Models/libri_tts/5049/", // tts model root folder
3
+ "tts_file":"best_model.pth", // tts checkpoint file
4
+ "tts_config":"config.json", // tts config.json file
5
+ "tts_speakers": null, // json file listing speaker ids. null if no speaker embedding.
6
+ "vocoder_config":null,
7
+ "vocoder_file": null,
8
+ "is_wavernn_batched":true,
9
+ "port": 5002,
10
+ "use_cuda": true,
11
+ "debug": true
12
+ }
TTS/server/server.py ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!flask/bin/python
2
+ import argparse
3
+ import io
4
+ import json
5
+ import os
6
+ import sys
7
+ from pathlib import Path
8
+ from threading import Lock
9
+ from typing import Union
10
+ from urllib.parse import parse_qs
11
+
12
+ from flask import Flask, render_template, render_template_string, request, send_file
13
+
14
+ from TTS.config import load_config
15
+ from TTS.utils.manage import ModelManager
16
+ from TTS.utils.synthesizer import Synthesizer
17
+
18
+
19
+ def create_argparser():
20
+ def convert_boolean(x):
21
+ return x.lower() in ["true", "1", "yes"]
22
+
23
+ parser = argparse.ArgumentParser()
24
+ parser.add_argument(
25
+ "--list_models",
26
+ type=convert_boolean,
27
+ nargs="?",
28
+ const=True,
29
+ default=False,
30
+ help="list available pre-trained tts and vocoder models.",
31
+ )
32
+ parser.add_argument(
33
+ "--model_name",
34
+ type=str,
35
+ default="tts_models/en/ljspeech/tacotron2-DDC",
36
+ help="Name of one of the pre-trained tts models in format <language>/<dataset>/<model_name>",
37
+ )
38
+ parser.add_argument("--vocoder_name", type=str, default=None, help="name of one of the released vocoder models.")
39
+
40
+ # Args for running custom models
41
+ parser.add_argument("--config_path", default=None, type=str, help="Path to model config file.")
42
+ parser.add_argument(
43
+ "--model_path",
44
+ type=str,
45
+ default=None,
46
+ help="Path to model file.",
47
+ )
48
+ parser.add_argument(
49
+ "--vocoder_path",
50
+ type=str,
51
+ help="Path to vocoder model file. If it is not defined, model uses GL as vocoder. Please make sure that you installed vocoder library before (WaveRNN).",
52
+ default=None,
53
+ )
54
+ parser.add_argument("--vocoder_config_path", type=str, help="Path to vocoder model config file.", default=None)
55
+ parser.add_argument("--speakers_file_path", type=str, help="JSON file for multi-speaker model.", default=None)
56
+ parser.add_argument("--port", type=int, default=5002, help="port to listen on.")
57
+ parser.add_argument("--use_cuda", type=convert_boolean, default=False, help="true to use CUDA.")
58
+ parser.add_argument("--debug", type=convert_boolean, default=False, help="true to enable Flask debug mode.")
59
+ parser.add_argument("--show_details", type=convert_boolean, default=False, help="Generate model detail page.")
60
+ return parser
61
+
62
+
63
+ # parse the args
64
+ args = create_argparser().parse_args()
65
+
66
+ path = Path(__file__).parent / "../.models.json"
67
+ manager = ModelManager(path)
68
+
69
+ if args.list_models:
70
+ manager.list_models()
71
+ sys.exit()
72
+
73
+ # update in-use models to the specified released models.
74
+ model_path = None
75
+ config_path = None
76
+ speakers_file_path = None
77
+ vocoder_path = None
78
+ vocoder_config_path = None
79
+
80
+ # CASE1: list pre-trained TTS models
81
+ if args.list_models:
82
+ manager.list_models()
83
+ sys.exit()
84
+
85
+ # CASE2: load pre-trained model paths
86
+ if args.model_name is not None and not args.model_path:
87
+ model_path, config_path, model_item = manager.download_model(args.model_name)
88
+ args.vocoder_name = model_item["default_vocoder"] if args.vocoder_name is None else args.vocoder_name
89
+
90
+ if args.vocoder_name is not None and not args.vocoder_path:
91
+ vocoder_path, vocoder_config_path, _ = manager.download_model(args.vocoder_name)
92
+
93
+ # CASE3: set custom model paths
94
+ if args.model_path is not None:
95
+ model_path = args.model_path
96
+ config_path = args.config_path
97
+ speakers_file_path = args.speakers_file_path
98
+
99
+ if args.vocoder_path is not None:
100
+ vocoder_path = args.vocoder_path
101
+ vocoder_config_path = args.vocoder_config_path
102
+
103
+ # load models
104
+ synthesizer = Synthesizer(
105
+ tts_checkpoint=model_path,
106
+ tts_config_path=config_path,
107
+ tts_speakers_file=speakers_file_path,
108
+ tts_languages_file=None,
109
+ vocoder_checkpoint=vocoder_path,
110
+ vocoder_config=vocoder_config_path,
111
+ encoder_checkpoint="",
112
+ encoder_config="",
113
+ use_cuda=args.use_cuda,
114
+ )
115
+
116
+ use_multi_speaker = hasattr(synthesizer.tts_model, "num_speakers") and (
117
+ synthesizer.tts_model.num_speakers > 1 or synthesizer.tts_speakers_file is not None
118
+ )
119
+ speaker_manager = getattr(synthesizer.tts_model, "speaker_manager", None)
120
+
121
+ use_multi_language = hasattr(synthesizer.tts_model, "num_languages") and (
122
+ synthesizer.tts_model.num_languages > 1 or synthesizer.tts_languages_file is not None
123
+ )
124
+ language_manager = getattr(synthesizer.tts_model, "language_manager", None)
125
+
126
+ # TODO: set this from SpeakerManager
127
+ use_gst = synthesizer.tts_config.get("use_gst", False)
128
+ app = Flask(__name__)
129
+
130
+
131
+ def style_wav_uri_to_dict(style_wav: str) -> Union[str, dict]:
132
+ """Transform an uri style_wav, in either a string (path to wav file to be use for style transfer)
133
+ or a dict (gst tokens/values to be use for styling)
134
+
135
+ Args:
136
+ style_wav (str): uri
137
+
138
+ Returns:
139
+ Union[str, dict]: path to file (str) or gst style (dict)
140
+ """
141
+ if style_wav:
142
+ if os.path.isfile(style_wav) and style_wav.endswith(".wav"):
143
+ return style_wav # style_wav is a .wav file located on the server
144
+
145
+ style_wav = json.loads(style_wav)
146
+ return style_wav # style_wav is a gst dictionary with {token1_id : token1_weigth, ...}
147
+ return None
148
+
149
+
150
+ @app.route("/")
151
+ def index():
152
+ return render_template(
153
+ "index.html",
154
+ show_details=args.show_details,
155
+ use_multi_speaker=use_multi_speaker,
156
+ use_multi_language=use_multi_language,
157
+ speaker_ids=speaker_manager.name_to_id if speaker_manager is not None else None,
158
+ language_ids=language_manager.name_to_id if language_manager is not None else None,
159
+ use_gst=use_gst,
160
+ )
161
+
162
+
163
+ @app.route("/details")
164
+ def details():
165
+ if args.config_path is not None and os.path.isfile(args.config_path):
166
+ model_config = load_config(args.config_path)
167
+ else:
168
+ if args.model_name is not None:
169
+ model_config = load_config(config_path)
170
+
171
+ if args.vocoder_config_path is not None and os.path.isfile(args.vocoder_config_path):
172
+ vocoder_config = load_config(args.vocoder_config_path)
173
+ else:
174
+ if args.vocoder_name is not None:
175
+ vocoder_config = load_config(vocoder_config_path)
176
+ else:
177
+ vocoder_config = None
178
+
179
+ return render_template(
180
+ "details.html",
181
+ show_details=args.show_details,
182
+ model_config=model_config,
183
+ vocoder_config=vocoder_config,
184
+ args=args.__dict__,
185
+ )
186
+
187
+
188
+ lock = Lock()
189
+
190
+
191
+ @app.route("/api/tts", methods=["GET", "POST"])
192
+ def tts():
193
+ with lock:
194
+ text = request.headers.get("text") or request.values.get("text", "")
195
+ speaker_idx = request.headers.get("speaker-id") or request.values.get("speaker_id", "")
196
+ language_idx = request.headers.get("language-id") or request.values.get("language_id", "")
197
+ style_wav = request.headers.get("style-wav") or request.values.get("style_wav", "")
198
+ style_wav = style_wav_uri_to_dict(style_wav)
199
+
200
+ print(f" > Model input: {text}")
201
+ print(f" > Speaker Idx: {speaker_idx}")
202
+ print(f" > Language Idx: {language_idx}")
203
+ wavs = synthesizer.tts(text, speaker_name=speaker_idx, language_name=language_idx, style_wav=style_wav)
204
+ out = io.BytesIO()
205
+ synthesizer.save_wav(wavs, out)
206
+ return send_file(out, mimetype="audio/wav")
207
+
208
+
209
+ # Basic MaryTTS compatibility layer
210
+
211
+
212
+ @app.route("/locales", methods=["GET"])
213
+ def mary_tts_api_locales():
214
+ """MaryTTS-compatible /locales endpoint"""
215
+ # NOTE: We currently assume there is only one model active at the same time
216
+ if args.model_name is not None:
217
+ model_details = args.model_name.split("/")
218
+ else:
219
+ model_details = ["", "en", "", "default"]
220
+ return render_template_string("{{ locale }}\n", locale=model_details[1])
221
+
222
+
223
+ @app.route("/voices", methods=["GET"])
224
+ def mary_tts_api_voices():
225
+ """MaryTTS-compatible /voices endpoint"""
226
+ # NOTE: We currently assume there is only one model active at the same time
227
+ if args.model_name is not None:
228
+ model_details = args.model_name.split("/")
229
+ else:
230
+ model_details = ["", "en", "", "default"]
231
+ return render_template_string(
232
+ "{{ name }} {{ locale }} {{ gender }}\n", name=model_details[3], locale=model_details[1], gender="u"
233
+ )
234
+
235
+
236
+ @app.route("/process", methods=["GET", "POST"])
237
+ def mary_tts_api_process():
238
+ """MaryTTS-compatible /process endpoint"""
239
+ with lock:
240
+ if request.method == "POST":
241
+ data = parse_qs(request.get_data(as_text=True))
242
+ # NOTE: we ignore param. LOCALE and VOICE for now since we have only one active model
243
+ text = data.get("INPUT_TEXT", [""])[0]
244
+ else:
245
+ text = request.args.get("INPUT_TEXT", "")
246
+ print(f" > Model input: {text}")
247
+ wavs = synthesizer.tts(text)
248
+ out = io.BytesIO()
249
+ synthesizer.save_wav(wavs, out)
250
+ return send_file(out, mimetype="audio/wav")
251
+
252
+
253
+ def main():
254
+ app.run(debug=args.debug, host="::", port=args.port)
255
+
256
+
257
+ if __name__ == "__main__":
258
+ main()
TTS/server/static/coqui-log-green-TTS.png ADDED
TTS/server/templates/details.html ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8
+ <meta name="description" content="">
9
+ <meta name="author" content="">
10
+
11
+ <title>TTS engine</title>
12
+
13
+ <!-- Bootstrap core CSS -->
14
+ <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
15
+ integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous"
16
+ rel="stylesheet">
17
+
18
+ <!-- Custom styles for this template -->
19
+ <style>
20
+ body {
21
+ padding-top: 54px;
22
+ }
23
+
24
+ @media (min-width: 992px) {
25
+ body {
26
+ padding-top: 56px;
27
+ }
28
+ }
29
+ </style>
30
+ </head>
31
+
32
+ <body>
33
+ <a href="https://github.com/mozilla/TTS"><img style="position: absolute; z-index:1000; top: 0; left: 0; border: 0;"
34
+ src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
35
+
36
+ {% if show_details == true %}
37
+
38
+ <div class="container">
39
+ <b>Model details</b>
40
+ </div>
41
+
42
+ <div class="container">
43
+ <details>
44
+ <summary>CLI arguments:</summary>
45
+ <table border="1" align="center" width="75%">
46
+ <tr>
47
+ <td> CLI key </td>
48
+ <td> Value </td>
49
+ </tr>
50
+
51
+ {% for key, value in args.items() %}
52
+
53
+ <tr>
54
+ <td>{{ key }}</td>
55
+ <td>{{ value }}</td>
56
+ </tr>
57
+
58
+ {% endfor %}
59
+ </table>
60
+ </details>
61
+ </div></br>
62
+
63
+ <div class="container">
64
+
65
+ {% if model_config != None %}
66
+
67
+ <details>
68
+ <summary>Model config:</summary>
69
+
70
+ <table border="1" align="center" width="75%">
71
+ <tr>
72
+ <td> Key </td>
73
+ <td> Value </td>
74
+ </tr>
75
+
76
+
77
+ {% for key, value in model_config.items() %}
78
+
79
+ <tr>
80
+ <td>{{ key }}</td>
81
+ <td>{{ value }}</td>
82
+ </tr>
83
+
84
+ {% endfor %}
85
+
86
+ </table>
87
+ </details>
88
+
89
+ {% endif %}
90
+
91
+ </div></br>
92
+
93
+
94
+
95
+ <div class="container">
96
+ {% if vocoder_config != None %}
97
+ <details>
98
+ <summary>Vocoder model config:</summary>
99
+
100
+ <table border="1" align="center" width="75%">
101
+ <tr>
102
+ <td> Key </td>
103
+ <td> Value </td>
104
+ </tr>
105
+
106
+
107
+ {% for key, value in vocoder_config.items() %}
108
+
109
+ <tr>
110
+ <td>{{ key }}</td>
111
+ <td>{{ value }}</td>
112
+ </tr>
113
+
114
+ {% endfor %}
115
+
116
+
117
+ </table>
118
+ </details>
119
+ {% endif %}
120
+ </div></br>
121
+
122
+ {% else %}
123
+ <div class="container">
124
+ <b>Please start server with --show_details=true to see details.</b>
125
+ </div>
126
+
127
+ {% endif %}
128
+
129
+ </body>
130
+
131
+ </html>
TTS/server/templates/index.html ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8
+ <meta name="description" content="🐸Coqui AI TTS demo server.">
9
+ <meta name="author" content="🐸Coqui AI TTS">
10
+
11
+ <title>TTS engine</title>
12
+
13
+ <!-- Bootstrap core CSS -->
14
+ <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
15
+ integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous"
16
+ rel="stylesheet">
17
+
18
+ <!-- Custom styles for this template -->
19
+ <style>
20
+ body {
21
+ padding-top: 54px;
22
+ }
23
+
24
+ @media (min-width: 992px) {
25
+ body {
26
+ padding-top: 56px;
27
+ }
28
+ }
29
+ </style>
30
+ </head>
31
+
32
+ <body>
33
+ <a href="https://github.com/coqui-ai/TTS"><img style="position: absolute; z-index:1000; top: 0; left: 0; border: 0;"
34
+ src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
35
+
36
+ <!-- Navigation -->
37
+ <!--
38
+ <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
39
+ <div class="container">
40
+ <a class="navbar-brand" href="#">Coqui TTS</a>
41
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
42
+ <span class="navbar-toggler-icon"></span>
43
+ </button>
44
+ <div class="collapse navbar-collapse" id="navbarResponsive">
45
+ <ul class="navbar-nav ml-auto">
46
+ <li class="nav-item active">
47
+ <a class="nav-link" href="#">Home
48
+ <span class="sr-only">(current)</span>
49
+ </a>
50
+ </li>
51
+ </ul>
52
+ </div>
53
+ </div>
54
+ </nav>
55
+ -->
56
+
57
+ <!-- Page Content -->
58
+ <div class="container">
59
+ <div class="row">
60
+ <div class="col-lg-12 text-center">
61
+ <img class="mt-5" src="{{url_for('static', filename='coqui-log-green-TTS.png')}}" align="middle"
62
+ width="512" />
63
+
64
+ <ul class="list-unstyled">
65
+ </ul>
66
+
67
+ {%if use_gst%}
68
+ <input value='{"0": 0.1}' id="style_wav" placeholder="style wav (dict or path to wav).." size=45
69
+ type="text" name="style_wav">
70
+ {%endif%}
71
+
72
+ <input id="text" placeholder="Type here..." size=45 type="text" name="text">
73
+ <button id="speak-button" name="speak">Speak</button><br /><br />
74
+
75
+ {%if use_multi_speaker%}
76
+ Choose a speaker:
77
+ <select id="speaker_id" name=speaker_id method="GET" action="/">
78
+ {% for speaker_id in speaker_ids %}
79
+ <option value="{{speaker_id}}" SELECTED>{{speaker_id}}</option>"
80
+ {% endfor %}
81
+ </select><br /><br />
82
+ {%endif%}
83
+
84
+ {%if use_multi_language%}
85
+ Choose a language:
86
+ <select id="language_id" name=language_id method="GET" action="/">
87
+ {% for language_id in language_ids %}
88
+ <option value="{{language_id}}" SELECTED>{{language_id}}</option>"
89
+ {% endfor %}
90
+ </select><br /><br />
91
+ {%endif%}
92
+
93
+
94
+ {%if show_details%}
95
+ <button id="details-button" onclick="location.href = 'details'" name="model-details">Model
96
+ Details</button><br /><br />
97
+ {%endif%}
98
+ <audio id="audio" controls autoplay hidden></audio>
99
+ <p id="message"></p>
100
+ </div>
101
+ </div>
102
+ </div>
103
+
104
+ <!-- Bootstrap core JavaScript -->
105
+ <script>
106
+ function getTextValue(textId) {
107
+ const container = q(textId)
108
+ if (container) {
109
+ return container.value
110
+ }
111
+ return ""
112
+ }
113
+ function q(selector) { return document.querySelector(selector) }
114
+ q('#text').focus()
115
+ function do_tts(e) {
116
+ const text = q('#text').value
117
+ const speaker_id = getTextValue('#speaker_id')
118
+ const style_wav = getTextValue('#style_wav')
119
+ const language_id = getTextValue('#language_id')
120
+ if (text) {
121
+ q('#message').textContent = 'Synthesizing...'
122
+ q('#speak-button').disabled = true
123
+ q('#audio').hidden = true
124
+ synthesize(text, speaker_id, style_wav, language_id)
125
+ }
126
+ e.preventDefault()
127
+ return false
128
+ }
129
+ q('#speak-button').addEventListener('click', do_tts)
130
+ q('#text').addEventListener('keyup', function (e) {
131
+ if (e.keyCode == 13) { // enter
132
+ do_tts(e)
133
+ }
134
+ })
135
+ function synthesize(text, speaker_id = "", style_wav = "", language_id = "") {
136
+ fetch(`/api/tts?text=${encodeURIComponent(text)}&speaker_id=${encodeURIComponent(speaker_id)}&style_wav=${encodeURIComponent(style_wav)}&language_id=${encodeURIComponent(language_id)}`, { cache: 'no-cache' })
137
+ .then(function (res) {
138
+ if (!res.ok) throw Error(res.statusText)
139
+ return res.blob()
140
+ }).then(function (blob) {
141
+ q('#message').textContent = ''
142
+ q('#speak-button').disabled = false
143
+ q('#audio').src = URL.createObjectURL(blob)
144
+ q('#audio').hidden = false
145
+ }).catch(function (err) {
146
+ q('#message').textContent = 'Error: ' + err.message
147
+ q('#speak-button').disabled = false
148
+ })
149
+ }
150
+ </script>
151
+
152
+ </body>
153
+
154
+ </html>
TTS/tts/__init__.py ADDED
File without changes