GraphCanon updated 3w · GitHub synced 3w
Decision brief
WaveRNN is a Python-based neural vocoder that can generate high-quality speech from text when used with TTS models like Tacotron.
Good fit when
- When you require a compact and efficient method to produce natural-sounding speech synthesis, specifically with the need for high fidelity in audio quality.
- If your project already utilizes PyTorch, leveraging WaveRNN can streamline integration due to its dependency on this framework.
Avoid when
- Avoid using when you need extensive customization of the vocoder parameters, since it is optimized for specific configurations and might not offer the level of tweakability other frameworks provide.
- Not recommended if your setup does not support CUDA, as WaveRNN requires PyTorch with CUDA for execution.
- Requirements:
- Python version must be equal to or higher than 3.6; Pytorch 1 with CUDA support is a prerequisite
Observed Jul 17, 2026 · Source: enrich:decision_facts
Verify the decision
Maintenance and security
Full trust report- Maintenance
- Dormant (1488d since push)
- As of 3w
- Provenance
- Not a fork · Personal account
- As of 3w
- Security (OSV)
- No criticals
- As of 1mo
Public GitHub metadata and optional OSV scans. Signals, not a guarantee. Trust methodology.
Install
pip install WaveRNN PyPISimilar tools
Same-category neighbours. No typed graph edges are catalogued for this tool yet.
Evidence and technical details
Sourced facts, taxonomy, compatibility claims, README excerpt, and machine-readable endpoints.
Overview
Repository for WaveRNN, a neural vocoder used in conjunction with text-to-speech models like Tacotron for generating high-quality speech from text.
Capability facts
- Languages
- python
Source: github.language · Jul 29, 2026
Categories
Compatibility
Sourced claims from the README excerpt - not unsourced marketing copy.
Tags
README
Installation
Ensure you have:
- Python >= 3.6
- Pytorch 1 with CUDA
Then install the rest with pip:
pip install -r requirements.txt
Quick Start
If you want to use TTS functionality immediately you can simply use:
python quick_start.py
This will generate everything in the default sentences.txt file and output to a new 'quick_start' folder where you can playback the wav files and take a look at the attention plots
You can also use that script to generate custom tts sentences and/or use '-u' to generate unbatched (better audio quality):
python quick_start.py -u --input_text "What will happen if I run this command?"
For agents
This page has a .md twin and JSON over the API.