Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -59,16 +59,17 @@ Generated with the Victoria voice (Stage 2 fine-tune, `voices/victoria.pt`).
|
|
| 59 |
|
| 60 |
| File | Description |
|
| 61 |
|---|---|
|
| 62 |
-
| `
|
| 63 |
| `voices/victoria.pt` | Victoria speaker voicepack (512-dim style embedding) |
|
| 64 |
| `audio/test_*.wav` | German phonetic test sentences |
|
| 65 |
|
| 66 |
## Usage
|
| 67 |
|
| 68 |
```python
|
|
|
|
| 69 |
from kokoro import KPipeline
|
| 70 |
|
| 71 |
-
pipeline = KPipeline(lang_code="de", model_path="
|
| 72 |
voicepack = pipeline.load_voice("voices/victoria.pt")
|
| 73 |
|
| 74 |
text = "Guten Tag, wie geht es Ihnen?"
|
|
|
|
| 59 |
|
| 60 |
| File | Description |
|
| 61 |
|---|---|
|
| 62 |
+
| `kikiri_german_base_51spk_ep4.pth` | Model weights (Kokoro-compatible format) |
|
| 63 |
| `voices/victoria.pt` | Victoria speaker voicepack (512-dim style embedding) |
|
| 64 |
| `audio/test_*.wav` | German phonetic test sentences |
|
| 65 |
|
| 66 |
## Usage
|
| 67 |
|
| 68 |
```python
|
| 69 |
+
# Uses the kokoro library as underlying framework
|
| 70 |
from kokoro import KPipeline
|
| 71 |
|
| 72 |
+
pipeline = KPipeline(lang_code="de", model_path="kikiri_german_base_51spk_ep4.pth")
|
| 73 |
voicepack = pipeline.load_voice("voices/victoria.pt")
|
| 74 |
|
| 75 |
text = "Guten Tag, wie geht es Ihnen?"
|