Papers › UnivNet: A Neural Vocoder with Multi-Resolution Spectrogram Discriminators for...

UnivNet: A Neural Vocoder with Multi-Resolution Spectrogram Discriminators for High-Fidelity Waveform Generation

15 Jun 2021arXiv:2106.07889archive 2025-07-28

Won Jang, Dan Lim, Jaesam Yoon, BongWan Kim, Juntae Kim

Most neural vocoders employ band-limited mel-spectrograms to generate waveforms. If full-band spectral features are used as the input, the vocoder can be provided with as much acoustic information as possible. However, in some models employing full-band mel-spectrograms, an over-smoothing problem occurs as part of which non-sharp spectrograms are generated. To address this problem, we propose UnivNet, a neural vocoder that synthesizes high-fidelity waveforms in real time. Inspired by works in the field of voice activity detection, we added a multi-resolution spectrogram discriminator that employs multiple linear spectrogram magnitudes computed using various parameter sets. Using full-band mel-spectrograms as input, we expect to generate high-resolution signals by adding a discriminator that employs spectrograms of multiple resolutions as the input. In an evaluation on a dataset containing information on hundreds of speakers, UnivNet obtained the best objective and subjective results among competing models for both seen and unseen speakers. These results, including the best subjective score for text-to-speech, demonstrate the potential for fast adaptation to new speakers without a need for training from scratch.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2106.07889")

Code

Syntology Ran 8 of 12 code samples harvested from 2 repositories linked to this paper; 4 have no recorded run. Of those that ran: 1 ran · honoured contract; 2 ran · our draft was wrong; 1 ran · fixture could not drive it; 4 ran with no contract checked.

By repository: community (archive-listed): 11 samples from 2 repositories, 7 ran; 1 identical to code first harvested elsewhere. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

coqui-ai/TTS mentioned on GitHubpytorchMPL-2.0 report
komyeongjin/specdiff-gan mentioned on GitHubpytorchMIT report
maum-ai/univnet mentioned on GitHubpytorch report
mindslab-ai/univnet mentioned on GitHubpytorchnot reachable when probed 2026-09-17 — repositories for recent papers often appear after camera-ready report
neonbjb/tortoise-tts mentioned on GitHubpytorch report
rishikksh20/UnivNet-pytorch mentioned on GitHubpytorchMIT report
MS-P3/code7 mindspore report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

12 samples harvested; 8 ran; 1 honoured the contract we drafted; 4 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · honoured contract
2ran · our draft was wrong
1ran · fixture could not drive it
4ran
4unverified

Licence: 1 of the 12 samples is pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. Some samples are identical code Syntology first harvested from another repository; for those, this paper's copy is not located and its licence is not recorded. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

discriminator_loss rishikksh20/UnivNet-pytorch/loss.py community (archive-listed) ran MIT (permissive) · 7137577cbef51217 · report
feature_loss rishikksh20/UnivNet-pytorch/loss.py community (archive-listed) ran MIT (permissive) · e453b51f0ed5fb28 · report
generator_loss rishikksh20/UnivNet-pytorch/loss.py community (archive-listed) ran MIT (permissive) · 1a9d74439d969cfd · report
get_padding rishikksh20/UnivNet-pytorch/utils.py community (archive-listed) ran · honoured contract fingerprinted MIT (permissive) · a26f85d7c72ef39a · report
load_checkpoint rishikksh20/UnivNet-pytorch/utils.py community (archive-listed) ran · our draft was wrong MIT (permissive) · 19c9fe23dc000c61 · report
load_wav rishikksh20/UnivNet-pytorch/meldataset.py community (archive-listed) ran MIT (permissive) · 8043eaefe4c09c1f · report
pad_or_truncate neonbjb/tortoise-tts/tortoise/api.py community (archive-listed) ran · fixture could not drive it fingerprinted Apache-2.0 (permissive) · ef08b07bfdc86c88 · report
dynamic_range_compression rishikksh20/UnivNet-pytorch/meldataset.py community (archive-listed) unverified MIT (permissive) · be031b15a988a556 · report
dynamic_range_decompression rishikksh20/UnivNet-pytorch/meldataset.py community (archive-listed) unverified MIT (permissive) · 9e30e7d510c9d341 · report
plot_spectrogram rishikksh20/UnivNet-pytorch/utils.py community (archive-listed) unverified MIT (permissive) · 8520e6e61b8bf789 · report
stft rishikksh20/UnivNet-pytorch/stft_loss.py community (archive-listed) unverified MIT (permissive) · d40b7ea72ed329ed · report
read_lexicon identical code first harvested elsewhere ran · our draft was wrong licence of this copy not recorded · 2b5c06c1ba593c3c · report

Tasks

Speech SynthesisText to Speechtext-to-speech

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections