Xenova HF staff commited on
Commit
4685882
·
verified ·
1 Parent(s): b4296bb

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md CHANGED
@@ -1,3 +1,124 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers.js
4
+ language:
5
+ - en
6
+ base_model:
7
+ - hexgrad/Kokoro-82M
8
+ pipeline_tag: text-to-speech
9
+ ---
10
+
11
+ # Kokoro TTS
12
+
13
+ Kokoro is a frontier TTS model for its size of 82 million parameters (text in/audio out).
14
+
15
+ ## Table of contents
16
+
17
+ - [Samples](#samples)
18
+ - [Usage](#usage)
19
+ - [JavaScript](#javascript)
20
+ - [Python](#python)
21
+ - [Quantizations](#quantizations)
22
+
23
+ ## Samples
24
+
25
+
26
+ > Life is like a box of chocolates. You never know what you're gonna get.
27
+
28
+
29
+ | Voice | Nationality | Gender | Sample |
30
+ |--------------------------|-------------|--------|-----------------------------------------------------------------------------------------------------------------------------------------|
31
+ | Default (`af`) | American | Female | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/C0_ZUcNSAxvMwpS8QbnKv.wav"></audio> |
32
+ | Bella (`af_bella`) | American | Female | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/B_q15Z_FXdgBP9-Hk9oKq.wav"></audio> |
33
+ | Nicole (`af_nicole`) | American | Female | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/sS8U5lQHkhgX7rwTmy-5w.wav"></audio> |
34
+ | Sarah (`af_sarah`) | American | Female | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/SokkBiqEqwxLLx_pqvf1p.wav"></audio> |
35
+ | Sky (`af_sky`) | American | Female | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/IzySGHUtl5mYeFxx1oaRf.wav"></audio> |
36
+ | Adam (`am_adam`) | American | Male | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/9n6myE6--ZsEuF5xDv5eC.wav"></audio> |
37
+ | Michael (`am_michael`) | American | Male | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/EPFciGtTU1YUXu8MAw7DX.wav"></audio> |
38
+ | Emma (`bf_emma`) | British | Female | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/AGEsXs-gyJq3dsyo7PjHo.wav"></audio> |
39
+ | Isabella (`bf_isabella`) | British | Female | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/JEzrrXYJSDcmlEzI7tE0c.wav"></audio> |
40
+ | George (`bm_george`) | British | Male | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/nsv4zKB4MX2TvXRxv504k.wav"></audio> |
41
+ | Lewis (`bm_lewis`) | British | Male | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/g_mcBl2xTbQl0sbrpZt48.wav"></audio> |
42
+
43
+
44
+ ## Usage
45
+
46
+ ### JavaScript
47
+
48
+ First, install the `kokoro-js` library from [NPM](https://npmjs.com/package/kokoro-js) using:
49
+ ```bash
50
+ npm i kokoro-js
51
+ ```
52
+
53
+ You can then generate speech as follows:
54
+
55
+ ```js
56
+ import { KokoroTTS } from "kokoro-js";
57
+
58
+ const model_id = "onnx-community/Kokoro-82M-ONNX";
59
+ const tts = await KokoroTTS.from_pretrained(model_id, {
60
+ dtype: "q8", // Options: "fp32", "fp16", "q8", "q4", "q4f16"
61
+ });
62
+
63
+ const text = "Life is like a box of chocolates. You never know what you're gonna get.";
64
+ const audio = await tts.generate(text, {
65
+ // Use `tts.list_voices()` to list all available voices
66
+ voice: "af_bella",
67
+ });
68
+ audio.save("audio.wav");
69
+ ```
70
+
71
+
72
+ ### Python
73
+
74
+ ```python
75
+ import os
76
+ import numpy as np
77
+ from onnxruntime import InferenceSession
78
+
79
+ # Tokens produced by phonemize() and tokenize() in kokoro.py
80
+ tokens = [50, 157, 43, 135, 16, 53, 135, 46, 16, 43, 102, 16, 56, 156, 57, 135, 6, 16, 102, 62, 61, 16, 70, 56, 16, 138, 56, 156, 72, 56, 61, 85, 123, 83, 44, 83, 54, 16, 53, 65, 156, 86, 61, 62, 131, 83, 56, 4, 16, 54, 156, 43, 102, 53, 16, 156, 72, 61, 53, 102, 112, 16, 70, 56, 16, 138, 56, 44, 156, 76, 158, 123, 56, 16, 62, 131, 156, 43, 102, 54, 46, 16, 102, 48, 16, 81, 47, 102, 54, 16, 54, 156, 51, 158, 46, 16, 70, 16, 92, 156, 135, 46, 16, 54, 156, 43, 102, 48, 4, 16, 81, 47, 102, 16, 50, 156, 72, 64, 83, 56, 62, 16, 156, 51, 158, 64, 83, 56, 16, 44, 157, 102, 56, 16, 44, 156, 76, 158, 123, 56, 4]
81
+
82
+ # Context length is 512, but leave room for the pad token 0 at the start & end
83
+ assert len(tokens) <= 510, len(tokens)
84
+
85
+ # Style vector based on len(tokens), ref_s has shape (1, 256)
86
+ voices = np.fromfile('./voices/af.bin', dtype=np.float32).reshape(-1, 1, 256)
87
+ ref_s = voices[len(tokens)]
88
+
89
+ # Add the pad ids, and reshape tokens, should now have shape (1, <=512)
90
+ tokens = [[0, *tokens, 0]]
91
+
92
+ model_name = 'model.onnx' # Options: model.onnx, model_fp16.onnx, model_quantized.onnx, model_q8f16.onnx, model_uint8.onnx, model_uint8f16.onnx, model_q4.onnx, model_q4f16.onnx
93
+ sess = InferenceSession(os.path.join('onnx', model_name))
94
+
95
+ audio = sess.run(None, dict(
96
+ input_ids=tokens,
97
+ style=ref_s,
98
+ speed=np.ones(1, dtype=np.float32),
99
+ ))[0]
100
+ ```
101
+
102
+ Optionally, save the audio to a file:
103
+ ```
104
+ import scipy.io.wavfile as wavfile
105
+ wavfile.write('audio.wav', 24000, audio[0])
106
+ ```
107
+
108
+ ## Quantizations
109
+
110
+ The model is resilient to quantization, enabling efficient high-quality speech synthesis at a fraction of the original model size.
111
+
112
+ > How could I know? It's an unanswerable question. Like asking an unborn child if they'll lead a good life. They haven't even been born.
113
+
114
+
115
+ | Model | Size (MB) | Sample |
116
+ |------------------------------------------------|-----------|-----------------------------------------------------------------------------------------------------------------------------------------|
117
+ | model.onnx (fp32) | 326 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/njexBuqPzfYUvWgs9eQ-_.wav"></audio> |
118
+ | model_fp16.onnx (fp16) | 163 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/8Ebl44hMQonZs4MlykExt.wav"></audio> |
119
+ | model_quantized.onnx (8-bit) | 92.4 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/9SLOt6ETclZ4yRdlJ0VIj.wav"></audio> |
120
+ | model_q8f16.onnx (Mixed precision) | 86 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/gNDMqb33YEmYMbAIv_Grx.wav"></audio> |
121
+ | model_uint8.onnx (8-bit & mixed precision) | 177 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/tpOWRHIWwEb0PJX46dCWQ.wav"></audio> |
122
+ | model_uint8f16.onnx (Mixed precision) | 114 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/vtZhABzjP0pvGD7dRb5Vr.wav"></audio> |
123
+ | model_q4.onnx (4-bit matmul) | 305 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/8FVn0IJIUfccEBWq8Fnw_.wav"></audio> |
124
+ | model_q4f16.onnx (4-bit matmul & fp16 weights) | 154 | <audio controls src="https://cdn-uploads.huggingface.co/production/uploads/61b253b7ac5ecaae3d1efe0c/7DrgWC_1q00s-wUJuG44X.wav"></audio> |
config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "model_type": "style_text_to_speech_2"
3
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fbea51ea711f2af382e88c833d9e288c6dc82ce5e98421ea61c058ce21a34cb
3
+ size 325532232
onnx/model_fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba4527a874b42b21e35f468c10d326fdff3c7fc8cac1f85e9eb6c0dfc35c334a
3
+ size 163234740
onnx/model_q4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04cf570cf9c4153694f76347ed4b9a48c1b59ff1de0999e6605d123966b197c7
3
+ size 305215966
onnx/model_q4f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1a508a6a29671ead84fac99c7401fbd3c21a583fc6ed1406d1ec974d53bf45f
3
+ size 154586422
onnx/model_q8f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04c658aec1b6008857c2ad10f8c589d4180d0ec427e7e6118ceb487e215c3cd0
3
+ size 86033585
onnx/model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbae9257e1e05ffc727e951ef9b9c98418e6d79f1c9b6b13bd59f5c9028a1478
3
+ size 92361116
onnx/model_uint8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6607a397d77b8514065420b7c1e7320117f7aabfdb45ce15f0050c5b0fe75aea
3
+ size 177464632
onnx/model_uint8f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:883333e03c597584b532eebea0f8310f25f0c9ade58fe864792c12d969944a9a
3
+ size 114209226
tokenizer.json ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "truncation": null,
4
+ "padding": null,
5
+ "added_tokens": [],
6
+ "normalizer": {
7
+ "type": "Replace",
8
+ "pattern": {
9
+ "Regex": "[^ !\"$',.:;?A-Za-z\u00a1\u00ab\u00bb\u00bf\u00e6\u00e7\u00f0\u00f8\u0127\u014b\u0153\u01c0-\u01c3\u0250-\u0268\u026a-\u0276\u0278-\u027b\u027d\u027e\u0280-\u0284\u0288-\u0292\u0294\u0295\u0298\u0299\u029b-\u029d\u029f\u02a1\u02a2\u02a4\u02a7\u02b0-\u02b2\u02b4\u02b7\u02bc\u02c8\u02cc\u02d0\u02d1\u02de\u02e0\u02e4\u0329\u03b2\u03b8\u03c7\u1d7b\u2014\u201c\u201d\u2026\u2191-\u2193\u2197\u2198\u2c71]"
10
+ },
11
+ "content": ""
12
+ },
13
+ "pre_tokenizer": {
14
+ "type": "Split",
15
+ "pattern": {
16
+ "Regex": ""
17
+ },
18
+ "behavior": "Isolated",
19
+ "invert": false
20
+ },
21
+ "post_processor": {
22
+ "type": "TemplateProcessing",
23
+ "single": [
24
+ {
25
+ "SpecialToken": {
26
+ "id": "$",
27
+ "type_id": 0
28
+ }
29
+ },
30
+ {
31
+ "Sequence": {
32
+ "id": "A",
33
+ "type_id": 0
34
+ }
35
+ },
36
+ {
37
+ "SpecialToken": {
38
+ "id": "$",
39
+ "type_id": 0
40
+ }
41
+ }
42
+ ],
43
+ "special_tokens": {
44
+ "$": {
45
+ "id": "$",
46
+ "ids": [
47
+ 0
48
+ ],
49
+ "tokens": [
50
+ "$"
51
+ ]
52
+ }
53
+ }
54
+ },
55
+ "decoder": null,
56
+ "model": {
57
+ "vocab": {
58
+ "$": 0,
59
+ ";": 1,
60
+ ":": 2,
61
+ ",": 3,
62
+ ".": 4,
63
+ "!": 5,
64
+ "?": 6,
65
+ "\u00a1": 7,
66
+ "\u00bf": 8,
67
+ "\u2014": 9,
68
+ "\u2026": 10,
69
+ "\"": 11,
70
+ "\u00ab": 12,
71
+ "\u00bb": 13,
72
+ "\u201c": 14,
73
+ "\u201d": 15,
74
+ " ": 16,
75
+ "A": 17,
76
+ "B": 18,
77
+ "C": 19,
78
+ "D": 20,
79
+ "E": 21,
80
+ "F": 22,
81
+ "G": 23,
82
+ "H": 24,
83
+ "I": 25,
84
+ "J": 26,
85
+ "K": 27,
86
+ "L": 28,
87
+ "M": 29,
88
+ "N": 30,
89
+ "O": 31,
90
+ "P": 32,
91
+ "Q": 33,
92
+ "R": 34,
93
+ "S": 35,
94
+ "T": 36,
95
+ "U": 37,
96
+ "V": 38,
97
+ "W": 39,
98
+ "X": 40,
99
+ "Y": 41,
100
+ "Z": 42,
101
+ "a": 43,
102
+ "b": 44,
103
+ "c": 45,
104
+ "d": 46,
105
+ "e": 47,
106
+ "f": 48,
107
+ "g": 49,
108
+ "h": 50,
109
+ "i": 51,
110
+ "j": 52,
111
+ "k": 53,
112
+ "l": 54,
113
+ "m": 55,
114
+ "n": 56,
115
+ "o": 57,
116
+ "p": 58,
117
+ "q": 59,
118
+ "r": 60,
119
+ "s": 61,
120
+ "t": 62,
121
+ "u": 63,
122
+ "v": 64,
123
+ "w": 65,
124
+ "x": 66,
125
+ "y": 67,
126
+ "z": 68,
127
+ "\u0251": 69,
128
+ "\u0250": 70,
129
+ "\u0252": 71,
130
+ "\u00e6": 72,
131
+ "\u0253": 73,
132
+ "\u0299": 74,
133
+ "\u03b2": 75,
134
+ "\u0254": 76,
135
+ "\u0255": 77,
136
+ "\u00e7": 78,
137
+ "\u0257": 79,
138
+ "\u0256": 80,
139
+ "\u00f0": 81,
140
+ "\u02a4": 82,
141
+ "\u0259": 83,
142
+ "\u0258": 84,
143
+ "\u025a": 85,
144
+ "\u025b": 86,
145
+ "\u025c": 87,
146
+ "\u025d": 88,
147
+ "\u025e": 89,
148
+ "\u025f": 90,
149
+ "\u0284": 91,
150
+ "\u0261": 92,
151
+ "\u0260": 93,
152
+ "\u0262": 94,
153
+ "\u029b": 95,
154
+ "\u0266": 96,
155
+ "\u0267": 97,
156
+ "\u0127": 98,
157
+ "\u0265": 99,
158
+ "\u029c": 100,
159
+ "\u0268": 101,
160
+ "\u026a": 102,
161
+ "\u029d": 103,
162
+ "\u026d": 104,
163
+ "\u026c": 105,
164
+ "\u026b": 106,
165
+ "\u026e": 107,
166
+ "\u029f": 108,
167
+ "\u0271": 109,
168
+ "\u026f": 110,
169
+ "\u0270": 111,
170
+ "\u014b": 112,
171
+ "\u0273": 113,
172
+ "\u0272": 114,
173
+ "\u0274": 115,
174
+ "\u00f8": 116,
175
+ "\u0275": 117,
176
+ "\u0278": 118,
177
+ "\u03b8": 119,
178
+ "\u0153": 120,
179
+ "\u0276": 121,
180
+ "\u0298": 122,
181
+ "\u0279": 123,
182
+ "\u027a": 124,
183
+ "\u027e": 125,
184
+ "\u027b": 126,
185
+ "\u0280": 127,
186
+ "\u0281": 128,
187
+ "\u027d": 129,
188
+ "\u0282": 130,
189
+ "\u0283": 131,
190
+ "\u0288": 132,
191
+ "\u02a7": 133,
192
+ "\u0289": 134,
193
+ "\u028a": 135,
194
+ "\u028b": 136,
195
+ "\u2c71": 137,
196
+ "\u028c": 138,
197
+ "\u0263": 139,
198
+ "\u0264": 140,
199
+ "\u028d": 141,
200
+ "\u03c7": 142,
201
+ "\u028e": 143,
202
+ "\u028f": 144,
203
+ "\u0291": 145,
204
+ "\u0290": 146,
205
+ "\u0292": 147,
206
+ "\u0294": 148,
207
+ "\u02a1": 149,
208
+ "\u0295": 150,
209
+ "\u02a2": 151,
210
+ "\u01c0": 152,
211
+ "\u01c1": 153,
212
+ "\u01c2": 154,
213
+ "\u01c3": 155,
214
+ "\u02c8": 156,
215
+ "\u02cc": 157,
216
+ "\u02d0": 158,
217
+ "\u02d1": 159,
218
+ "\u02bc": 160,
219
+ "\u02b4": 161,
220
+ "\u02b0": 162,
221
+ "\u02b1": 163,
222
+ "\u02b2": 164,
223
+ "\u02b7": 165,
224
+ "\u02e0": 166,
225
+ "\u02e4": 167,
226
+ "\u02de": 168,
227
+ "\u2193": 169,
228
+ "\u2191": 170,
229
+ "\u2192": 171,
230
+ "\u2197": 172,
231
+ "\u2198": 173,
232
+ "\u0329": 175,
233
+ "'": 176,
234
+ "\u1d7b": 177
235
+ }
236
+ }
237
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "model_max_length": 512,
3
+ "pad_token": "$",
4
+ "tokenizer_class": "PreTrainedTokenizer",
5
+ "unk_token": "$"
6
+ }
voices/af.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4f11d9d055a12bfa0db2668a3e4f0ef8fd1f1ccca69494479718e44dbf9e41a
3
+ size 524288
voices/af_alloy.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4a6b876047fd7fb472edf4ebd63cfac7c3b958a7cae7c106e8f038ca6308c45
3
+ size 522240
voices/af_aoede.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a004c33430762e2461eedb2013fad808ef4ab3121f5300f554476caf58d8361
3
+ size 522240
voices/af_bella.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f69d836209b78eb8c66e75e3cda491e26ea838a3674257e9d4e5703cbaf55c8b
3
+ size 522240
voices/af_heart.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d583ccff3cdca2f7fae535cb998ac07e9fcb90f09737b9a41fa2734ec44a8f0b
3
+ size 522240
voices/af_jessica.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a240a5e3c15b43563d6e923bdca8ef5613a23471d9b77653694012435df23bd8
3
+ size 522240
voices/af_kore.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9be5221b6a941c04b561959b8ff0b06e809444dcc4ab7e75a7b23606f691819e
3
+ size 522240
voices/af_nicole.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd2191ab31b914ed7b318416b0e4440fdf392ddad9106a060819aa600a64f59a
3
+ size 522240
voices/af_nova.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18778272caa0d0eebaea251c35fd635f038434f9eee5e691d02a174bd328414f
3
+ size 522240
voices/af_river.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00a2bcf82b1d86e8f19902ede58c65ccf6c0e43b44b7d74fad54e5d8933c9c30
3
+ size 522240
voices/af_sarah.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4409fbc125afabacc615d94db5398d847006a737b0247d6892b7a9a0007a2f0a
3
+ size 522240
voices/af_sky.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4435255c9744f3f31659e0d714ab7689bf65d9e77ec1cce060f083912614f0b9
3
+ size 522240
voices/am_adam.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:162b035ed91cfc48b6046982184c645f72edcdd1b82843347f605d7bf7b15716
3
+ size 522240
voices/am_echo.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3968b92c3c4cd1c4416dbded36c13eaa388a90d5788d02a13e4d781f5f8cf3c3
3
+ size 522240
voices/am_eric.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b5be17edd1e3636901ce7598baafe2dc8dd8ff707a0c23bf9e461add7e2832
3
+ size 522240
voices/am_fenrir.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c27989f741f7ee34d273a39d8a595cc0837d35f5ced9a29b7cc162614616df43
3
+ size 522240
voices/am_liam.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52403be32fd047c6a44517cb0bcd6b134f2a18baa73e70ef41651e0eab921ade
3
+ size 522240
voices/am_michael.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d1f21dd8da39c30705cd4c75d039d265e9bc4a2a93ed09bc9e1b1225eb95ba1
3
+ size 522240
voices/am_onyx.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da5d135b424164916d75a68ffb4c2abce3d7d5ccc82dd1ee6cf447ce286145e6
3
+ size 522240
voices/am_puck.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcf73c989033e9233e0b98713eca600c8c74dcc1614b37009d5450ff4a2274a0
3
+ size 522240
voices/am_santa.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61150cf726ab6c5ed7a99f90a304f91f5a72c00c592e89ec94e5df11c319227a
3
+ size 522240
voices/bf_alice.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08afa6ba24da61ea5e8efa139e5aadc938d83f0a6da5a900adaf763ac1da5573
3
+ size 522240
voices/bf_emma.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:669fe0647f9dd04fcab92f1439a40eeb4c8b4ab1f82e4996fe3d918ce4a63b73
3
+ size 522240
voices/bf_isabella.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3754352c4aaa46d17f27654ab7518d65b62ad6163a0f55a5f4330c2da2c4e94f
3
+ size 522240
voices/bf_lily.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e0ee32ebe64a467124976b14e69590746f1c4ce41a12b587a50c862edfea335
3
+ size 522240
voices/bm_daniel.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b3194bbceffb746733cbc22c8f593dd44e401a71d53895a2dca891bc595a1e8
3
+ size 522240
voices/bm_fable.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f889083196807b4adb15e9204252165f503b8d33d3982e681c52443c49d798f1
3
+ size 522240
voices/bm_george.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4b235a4c1f2cd3b939fed08b899ce9385638b763f7b73a59616c4fc9bd6c9bc
3
+ size 522240
voices/bm_lewis.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8f671cef828c30e66fdf0b0756a76bba58f6bb3398cbbf27058642acbcedb97
3
+ size 522240
voices/ef_dora.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f66ec66bd295acb18372e37008533a9a3228483ccd294e7538d5d9294ac9a532
3
+ size 522240
voices/em_alex.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27809e9eafdcbcfff90a3016c697568676531de2a2c39cee29c96c7bd6b83e95
3
+ size 522240
voices/em_santa.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad43b774e1ca24d05c6161297d8aeb770ac3d29bb95daf516727af5f7d543683
3
+ size 522240
voices/ff_siwis.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a35f5675ad08948e326ae75fd0ea16ba5d0042e4f76b5f3d1df77d0a48c54861
3
+ size 522240
voices/hf_alpha.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:040be6a4425411cc01fda5fd06693c76bfa78572632852bc8cda9c99232ffb56
3
+ size 522240
voices/hf_beta.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd83ae0bb9b2e4e4fb92b4973bd8d1822ca0036d3c498bf4fc89aa8e33917cc7
3
+ size 522240
voices/hm_omega.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b02d9222d9ed00ce26b302173a862c2c93f96cc40b5c422b8d14910b9ff34137
3
+ size 522240
voices/hm_psi.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:644daf88ba8aeb7bd08950bbdcd4453bb280864e49dc4df93fabc6be32e03f37
3
+ size 522240
voices/if_sara.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:409b69248798fcdc2542330c76953d230710f19b057e59cb82fdc3c4cf71265c
3
+ size 522240