KittenML/kitten-tts-micro-0.8

🤗 Hugging Face sourceapache-2.045 MBother✓ 2 checksumsupdated today
Submit in one command

Run it next to your model folder. It makes the torrent, checks your files against Hugging Face, and submits it. You just start seeding and paste your key from your account. It only reads your files and never changes them. Read the script first if you like.

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo KittenML/kitten-tts-micro-0.8 ./model-folder
Needs a seeder →

Kitten TTS Micro 0.8 😻

Kitten TTS is an open-source realistic text-to-speech model with 40 million parameters and around 40MB of filesize.

🚀 Quick Start

Installation

pip install https://github.com/KittenML/KittenTTS/releases/download/0.8/kittentts-0.8.0-py3-none-any.whl

Basic Usage

from kittentts import KittenTTS
m = KittenTTS("KittenML/kitten-tts-micro-0.8")
audio = m.generate("This high quality TTS model works without a GPU", voice='Jasper' )
# available_voices : ['Bella', 'Jasper', 'Luna', 'Bruno', 'Rosie', 'Hugo', 'Kiki', 'Leo']
# Save the audio
import soundfile as sf
sf.write('output.wav', audio, 24000)

Acknowledgements

StyleTTS 2 architecture