Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,62 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# Kitten TTS 😻
|
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 kitten-tts
|
28 |
+
```
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
### Basic Usage
|
33 |
+
|
34 |
+
```
|
35 |
+
from kittentts import kittentts
|
36 |
+
m = kittentts("kittenml/kitten-tts-nano-preview")
|
37 |
+
|
38 |
+
audio = m.generate("This high quality TTS model works without a GPU")
|
39 |
+
|
40 |
+
```
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
## 💻 System Requirements
|
47 |
+
|
48 |
+
Works literally everywhere
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
## Checklist
|
53 |
+
|
54 |
+
- [x] Release a preview model
|
55 |
+
- [ ] Release the fully trained model weights
|
56 |
+
- [ ] Release mobile SDK
|
57 |
+
- [ ] Release web version
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|