arXiv · 2025 · Preprint

Junjie Zheng et al. (Giant Network AI Lab) · → Paper · Demo: ✓ · Code: ✗

Adapts a pretrained zero-shot voice conversion checkpoint into a singing voice conversion system that stays robust to the noise, reverberation, and echo artifacts left behind by real-world music source separation.

Problem

Singing voice conversion systems are typically trained and evaluated on clean vocal recordings, but real deployment pipelines (dubbing, voice chat, music production) rely on vocals extracted from mixed tracks via source separation. That separation process leaves residual accompaniment, reverberation, echo, and harmony artifacts, and pitch trackers produce noisier fundamental frequency (F0) contours on these degraded inputs than on studio-clean vocals. Prior robustness strategies, adversarial training and generic data augmentation, generalize poorly to unseen noise conditions, and content-modeling approaches based on phonetic posteriorgrams or bottleneck features improve noise robustness at the cost of naturalness under F0 jitter, reverberation, and echo. This training/deployment mismatch leaves a gap between benchmark performance and practical usability for singing voice conversion.

Method

R2-SVC is built by adapting a pretrained Seed-VC checkpoint, a diffusion-transformer (DiT) flow-matching zero-shot voice conversion model, with three additions targeting real-world singing conditions.

First, simulation-based robustness enhancement (SRE) perturbs the training signal along two axes. Random F0 perturbation applies jitter (simulating vocal vibrato), glide (simulating natural pitch slides), or jump (simulating abrupt F0 tracking errors) to 2-4 segments per training sample, reducing the model’s reliance on the F0 contour and pushing it to lean more on bottleneck-feature content representations. Independently, a configurable wet-sound simulation chain applies harmony, echo, and reverb effects to the vocal input (each triggered with its own probability, and applied to all modules except the F0 extractor) to mimic residual artifacts from music separation. The model is always trained to reconstruct the clean, unperturbed target from this perturbed input.

Second, the Singing-Enhanced Timbre and Style Extractor (SETSE) extends the CAM++ speaker-embedding framework with domain-specific singing data: clean vocals, DNSMOS-filtered separated vocals, and public singing corpora are added to CAM++‘s original training data via transfer learning, so the extractor captures singer-specific style (vibrato, articulation) in addition to timbre that is shared between speaking and singing voice.

Third, a Neural Source-Filter (NSF) module is integrated into the acoustic model to provide explicit source-filter decomposition. The harmonic component of the excitation signal is generated by projecting a vector of F0-derived sinusoids through a linear layer and a tanh nonlinearity, and this excitation is combined with content features to improve the naturalness and controllability of the converted singing output.

The full model retains Seed-VC’s DiT-based flow-matching backbone (17 layers, 12 attention heads, 768-dim embeddings, 3072-dim FFN), operates at 44.1kHz with a 2048-point FFT, 512 hop size, and 128 mel bins, and is fine-tuned from the pretrained checkpoint for 50,000 steps with an effective batch size of 24 using AdamW (peak learning rate 1e-4, decaying to 1e-5). A pretrained BigVGAN vocoder converts the model’s mel output to waveform.

Key Results

R2-SVC is compared against Seed-VC (the 200M-parameter official checkpoint, itself trained for singing voice conversion) and FreeSVC on two constructed test sets: SVC-Normal (100 samples drawn from internal and open singing data) and SVC-Hard (built to reflect real industrial separation conditions, with reverberation, echo, background accompaniment, and harmony vocals against 10 held-out internal target speakers).

On SVC-Normal, R2-SVC reaches the highest speaker similarity (SPK-SIM 75.17% vs. 71.33% for Seed-VC and 64.09% for FreeSVC) with competitive intelligibility (CER 13.41%) and the best aesthetic CE, CU, and PQ sub-scores. On SVC-Hard, the gap widens: SPK-SIM improves to 76.26%, CER (25.77%) stays close to Seed-VC (25.66%) and far below FreeSVC (39.09%), and SMOS improves substantially over Seed-VC (2.64±0.10 vs. 1.21±0.02). Naturalness (NMOS) on the hard set also improves clearly over Seed-VC (2.90±0.11 vs. 2.79±0.17). An ablation removing each of the three modules (SETSE, SRE, NSF) shows all three contribute to the hard-set gains, with SRE removal causing the largest naturalness drop on SVC-Hard (NMOS falls from 2.90 to 2.23), while SPK-SIM on the ablated variants is sometimes higher than the full model, indicating a trade-off between the robustness/style modules and raw speaker-similarity scores.

Novelty Assessment

R2-SVC does not introduce a new generative architecture; it fine-tunes an existing zero-shot voice-conversion checkpoint (Seed-VC) and layers three known techniques onto it: structured F0/acoustic-artifact data augmentation, domain-adapted speaker embedding extraction, and hn-NSF-based source-filter conditioning (itself a pre-existing 2019 vocoding technique). The contribution is the combination and its application to the specific, underserved gap of real-world music-separation artifacts in singing voice conversion, rather than a new architectural mechanism. The paper’s own ablations support this framing: each component is shown to matter for robustness on the constructed hard test set, but no component is presented as a novel structural design in isolation.

Field Significance

Moderate. The paper provides a concrete, ablation-supported recipe for adapting a pretrained zero-shot voice-conversion model to singing under noisy, separation-artifact-laden conditions, a practically important but narrowly scoped deployment problem. It demonstrates that F0 perturbation and wet-sound simulation during fine-tuning measurably improve subjective naturalness and similarity on a purpose-built hard test set, offering evidence for how to close the training/deployment mismatch in music-separated vocal pipelines.

Claims

  • supports: Explicitly perturbing fundamental frequency during training and forcing reconstruction of the clean target reduces a voice conversion model’s reliance on noisy F0 tracking, improving robustness to real-world pitch extraction errors.

    Evidence: Random jitter/glide/jump F0 perturbation applied to 2-4 segments per sample, combined with reconstruction-of-clean-target training, drove the largest naturalness ablation effect: removing this module (w/o SRE) dropped SVC-Hard NMOS from 2.90±0.11 to 2.23±0.21. (§2.2, Table 1)

  • supports: Augmenting speaker/timbre extraction with domain-specific target-style data improves style preservation without requiring a redesigned embedding architecture.

    Evidence: Extending CAM++ with clean vocals, DNSMOS-filtered separated vocals, and public singing corpora (SETSE) raised SVC-Hard SMOS from 1.74±0.11 (w/o SETSE) to 2.64±0.10 in the full model. (§2.3, Table 1)

  • complicates: Robustness interventions aimed at noisy real-world conditions can trade off against raw speaker-similarity scores measured by automatic embedding cosine similarity.

    Evidence: The ablated w/o-SETSE and w/o-SRE variants achieved higher SPK-SIM than the full R2-SVC model on both test sets (e.g., 78.95% vs. 75.17% on SVC-Normal), even though the full model scored better on subjective naturalness and similarity (NMOS, SMOS). (§4.3, Table 1)

  • complicates: Automatic intelligibility metrics computed with off-the-shelf ASR systems degrade sharply on singing material with ambiguous pronunciation and complex vocal techniques, independent of the voice conversion system’s own quality.

    Evidence: CER on the SVC-Hard test set (25.77% for R2-SVC) was roughly double the SVC-Normal CER (13.41%) for the same system, attributed to ambiguous pronunciation and complex singing techniques in the hard set rather than conversion failures. (§4.1)

Limitations and Open Questions

The evaluation relies on internal, unreleased test sets (SVC-Normal, SVC-Hard) and internal target speakers and training vocal data (DNSMOS-filtered separated vocals, "high-quality internal vocal data"), so results cannot be independently reproduced or directly compared against future systems evaluated on public singing conversion benchmarks.

The paper reports no released code, and the demo page provides audio samples only. Training data for the CAM++-based extractor and part of the robustness-oriented fine-tuning set are proprietary internal recordings, so the reported ~230 hours of public singing corpora understate the total training data actually used. The ablation study shows that the robustness and style modules sometimes reduce automatic SPK-SIM even as they improve subjective quality, but the paper does not investigate this trade-off further or report what drives it. Baseline comparisons are limited to two systems (Seed-VC, FreeSVC); no comparison is made to other recent robust or noise-aware voice conversion systems referenced in the introduction. The authors note reinforcement learning-based adaptive optimization, improved timbre similarity modeling, and faster real-time inference as future work, implying current inference speed and timbre fidelity are not yet considered solved.

Wiki Connections

  • Singing Voice Synthesis and Conversion — applies fine-tuning and data augmentation strategies specifically to make zero-shot singing voice conversion robust to real-world separation artifacts.
  • Voice Conversion — extends a pretrained zero-shot voice conversion checkpoint with singing-specific robustness and style-extraction modules.
  • Zero-Shot TTS — inherits and evaluates zero-shot speaker/style transfer to singers unseen during training.
  • Flow Matching — builds directly on a diffusion-transformer flow-matching backbone inherited from its base checkpoint.
  • Speaker Adaptation — domain-adapts a speaker embedding extractor with singing-specific data to better preserve timbre and singing style.
  • Subjective Evaluation — reports NMOS and SMOS listening-test scores alongside objective metrics to validate naturalness and similarity gains.
  • Seed-VC (Zero-shot Voice Conversion with Diffusion Transformers) — R2-SVC is directly built by fine-tuning this paper’s pretrained zero-shot voice conversion checkpoint and uses it as its primary baseline.
  • REF-VC — a related diffusion-transformer zero-shot voice conversion system cited as prior work addressing robustness and expressiveness in the same design space.
  • Noro — a related noise-robust one-shot voice conversion system cited as prior work on robustness to noisy conditions in voice conversion.