Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# Kitten TTS Nnao 0.2 😻
|
6 |
+
|
7 |
+
Kitten TTS is an open-source realistic text-to-speech model with just 15 million parameters, designed for lightweight deployment and high-quality voice synthesis.
|
8 |
+
|
9 |
+
*Currently in developer preview*
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
## ✨ Features
|
14 |
+
|
15 |
+
- **Ultra-lightweight**: Model size less than 25MB
|
16 |
+
- **CPU-optimized**: Runs without GPU on any device
|
17 |
+
- **High-quality voices**: Several premium voice options available
|
18 |
+
- **Fast inference**: Optimized for real-time speech synthesis
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
## 🚀 Quick Start
|
23 |
+
|
24 |
+
### Installation
|
25 |
+
|
26 |
+
```
|
27 |
+
pip install https://github.com/KittenML/KittenTTS/releases/download/0.1/kittentts-0.1.0-py3-none-any.whl
|
28 |
+
```
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
### Basic Usage
|
33 |
+
|
34 |
+
```
|
35 |
+
from kittentts import KittenTTS
|
36 |
+
m = KittenTTS("KittenML/kitten-tts-nano-0.2")
|
37 |
+
|
38 |
+
audio = m.generate("This high quality TTS model works without a GPU", voice='expr-voice-2-f' )
|
39 |
+
|
40 |
+
# available_voices : [ 'expr-voice-2-m', 'expr-voice-2-f', 'expr-voice-3-m', 'expr-voice-3-f', 'expr-voice-4-m', 'expr-voice-4-f', 'expr-voice-5-m', 'expr-voice-5-f' ]
|
41 |
+
|
42 |
+
# Save the audio
|
43 |
+
import soundfile as sf
|
44 |
+
sf.write('output.wav', audio, 24000)
|
45 |
+
|
46 |
+
|
47 |
+
```
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
## 💻 System Requirements
|
54 |
+
|
55 |
+
Works literally everywhere
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
## Checklist
|
60 |
+
|
61 |
+
- [x] Release a preview model
|
62 |
+
- [ ] Release the fully trained model weights
|
63 |
+
- [ ] Release mobile SDK
|
64 |
+
- [ ] Release web version
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|