RWKVox uses a fine-tuned
RWKV-7 language model (0.4B parameters) as the backbone for speech synthesis. Given a short text and a reference voice clip, it generates natural-sounding speech that mimics the speaker's voice.
For full installation instructions, usage examples, CLI reference, and audio demos, see the GitHub repository:
1git clone https://github.com/Ed-Lovera/rwkvox.git
2cd rwkvox
3pip install -e .
4
5# Model weights (~2.8 GB) are downloaded automatically on first run
6rwkvox --text "Hello, welcome to RWKVox." --voice my_voice.wav --output hello.wav
The RWKV-7 weights included in
rwkv_tts_0.4B_best.pth are derived from the
RWKV-7 World 0.4B base model (Apache 2.0, © Bo Peng). The Voice Encoder (
ve.safetensors) and S3Gen decoder (
s3gen_meanflow.safetensors) are from the
Chatterbox project (MIT, © 2025 Resemble AI).
Full license texts are available in the
GitHub repository.