HiFi-GAN: Generative Adversarial Networks for Efficient and High Fidelity Speech Synthesis
Jungil KongJaehyeon KimJaekyoung Bae
Introduces HiFi-GAN, a GAN-based neural vocoder that models periodic audio patterns to match the synthesis quality of autoregressive baselines while generating high-fidelity speech over one hundred times faster than real time.
The article addresses the challenge of creating natural-sounding speech from text using neural networks, where current methods either produce high-quality audio too slowly, require excessive computing resources, or fall short in realism. This matters because voice interfaces are expanding rapidly in assistants, vehicles, and smart devices, demanding both lifelike output and fast, efficient generation.
The work set out to develop a generative adversarial network called HiFi-GAN that delivers both higher audio quality and greater speed than leading autoregressive and flow-based models for converting mel-spectrograms into raw waveforms. The approach involved training a fully convolutional generator with multi-receptive field fusion modules alongside two discriminators—one that examines periodic patterns at multiple intervals and another that assesses audio at different scales—using adversarial, mel-spectrogram, and feature-matching losses. Experiments used the LJSpeech single-speaker dataset for primary evaluation, the VCTK multi-speaker set for generalization tests, crowd-sourced mean opinion score ratings, and direct speed measurements on GPU and CPU hardware.
Key findings show that HiFi-GAN variants consistently outperformed publicly available WaveNet, WaveGlow, and MelGAN implementations in perceptual quality while running substantially faster. The largest model reached a mean opinion score of 4.36 against a human ground-truth score of 4.45 and generated audio 167.9 times faster than real time on a V100 GPU. A compact version used only 0.92 million parameters yet maintained strong quality, and the smallest model produced audio 13.4 times faster than real time on CPU with quality comparable to an autoregressive baseline. The models also generalized effectively to unseen speakers and improved further when fine-tuned for end-to-end pipelines.
These results indicate that explicit modeling of periodic signal patterns enables GANs to close the quality gap with slower methods without sacrificing efficiency, supporting lower-latency and lower-memory applications such as on-device synthesis. The article notes that the same discriminator setup works across generator configurations of varying sizes, allowing flexible trade-offs between speed and quality.
The authors recommend releasing the code as open source to support further research and suggest that practitioners select generator variants according to target hardware constraints. Main limitations include reliance on specific English-language datasets and the need for fine-tuning in fully end-to-end systems; confidence in the core quality and speed claims is high given consistent human ratings and controlled comparisons, though real-world deployment may require additional validation on diverse accents and conditions.
- Paper: WaveNet: A Generative Model for Raw Audio, Aäron van den Oord et al. (2016). WaveNet established the foundational neural audio synthesis benchmark that HiFi-GAN explicitly sets out to outperform in speed and efficiency.
- Paper: Natural TTS Synthesis by Conditioning Wavenet on MEL Spectrogram Predictions, Jonathan Shen et al. (2017). Tacotron 2 established mel-spectrogram conditioning as the standard intermediate representation for neural vocoding pipelines that HiFi-GAN adopts.
- Paper: Generative Adversarial Networks, Ian J. Goodfellow et al. (2014). This seminal work introduces the foundational generative adversarial network framework and minimax training objective utilized by HiFi-GAN.
- Paper: Tacotron: Towards End-to-End Speech Synthesis, Yuxuan Wang et al. (2017). Tacotron introduced the modern deep learning paradigm for neural text-to-speech synthesis pipelines in which neural vocoders like HiFi-GAN operate.
- Paper: DiffWave: A Versatile Diffusion Model for Audio Synthesis, Zhifeng Kong et al. (2021). DiffWave explores diffusion models as an alternative non-autoregressive paradigm to GAN vocoders like HiFi-GAN for fast, high-fidelity waveform generation.
- Paper: Qwen3-TTS Technical Report, Hangrui Hu et al. (2026). Qwen3-TTS extends high-fidelity speech synthesis to massive multi-speaker, multilingual streaming architectures in modern large language model frameworks.
