UniverSR: Unified and Versatile Audio Super-Resolution via Vocoder-Free Flow Matching
Paper • 2510.00771 • Published • 1
Vocoder-free broadband audio super-resolution model that upsamples 8 / 12 / 16 / 24 kHz → 48 kHz audio using Continuous Normalizing Flows (Flow Matching ODEs) in the power-compressed complex STFT domain ($|X|^{0.2} e^{j\angle X}$). Trained on diverse acoustic distributions spanning speech, polyphonic music, and studio sound effects.
This repository provides verified, zero-overhead SafeTensors weights (model.safetensors) converted from the original checkpoint published by Choi et al., eliminating unsafe PyTorch pickle deserialization (pytorch_model.bin) while enabling instant zero-copy memory mapping. Integrated and optimized for production audio restoration within Furgie V2.
48k (48.0 kHz 32-bit Float PCM Master)heun (2nd-Order Predictor-Corrector Scheme)16 steps0.00 (Pure conditional trajectory; single-pass evaluation)0 bins (Bit-exact ground-truth passband concatenation, $0.0\text{ Hz} - 12.0\text{ kHz}$)24000 Hz (Dynamic support for 8k, 12k, 16k, and 24k anchors)bypass (Passband bit-exact unity, $1.0\times$ linear gain scalar)git clone https://github.com/oldskool978/Furgie.git
cd Furgie
pip install -r requirements.txt
# Download and verify SafeTensors weights
python scripts/hydrate_models.py --precision fp32
# Launch interactive super-resolution harness
python harness.py
# Non-interactive CLI batch generation
python harness.py --batch --input "workspace/input/track.wav" --output "workspace/output/master_48k.wav" --solver heun --steps 16 --cfg 0.0 --anchor 24000 --headroom-mode bypass
import torch
from furgie_core.engine import FurgieEngine
from furgie_core.schema import FurgieRequest
# Initialize neural engine
engine = FurgieEngine(
device="cuda" if torch.cuda.is_available() else "cpu",
model_repo_id="OLDSKOOL978/universr-audio"
)
# Configure restoration request
request = FurgieRequest(
input_path="workspace/input/track.wav",
output_path="workspace/output/master_Furgie_48k.wav",
solver="heun",
ode_steps=16,
guidance_scale=0.0,
input_sr_anchor=24000,
headroom_mode="bypass",
target_rate="48k"
)
# Run super-resolution pass
telemetry = engine.synthesize_request(request)
print(f"Synthesis Complete: {telemetry.duration_seconds:.2f}s audio generated in {telemetry.generation_time_seconds:.2f}s (RTF: {telemetry.real_time_factor:.3f}x)")
print(f"True Peak: {telemetry.true_peak_dbtp:.2f} dBTP | Crossover Step: {telemetry.crossover_magnitude_step_db:.3f} dB")
config.yaml)
model_metadata:
name: Furgie-Convergent-48K
version: 2.0.0
description: Filterless Complex STFT Generative Super-Resolution Engine.
audio:
target_sample_rate: 48000
n_fft: 1024
hop_length: 512
win_length: 1024
power_alpha: 0.2
model:
dims: [96, 192, 384, 768]
depths: [2, 2, 4, 2]
time_dim: 256
cond_dim: 384
total_freq_bins: 512
hr_freq_bins: 432
feature_enc_layers: 4
sr_to_lr_bins:
8: 80
12: 128
16: 170
24: 256
universr_flow_core:
enabled: true
repo_id: OLDSKOOL978/universr-audio
solver: heun
ode_steps: 16
guidance_scale: 0.0
input_sr_anchor: 24000
@inproceedings{choi2026universr,
title = {{UniverSR}: Unified and Versatile Audio Super-Resolution via Vocoder-Free Flow Matching},
author = {Choi, Woongjib and Lee, Sangmin and Lim, Hyungseob and Kang, Hong-Goo},
booktitle = {IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP)},
year = {2026}
}
@software{furgie2026,
author = {OLDSKOOL978},
title = {Furgie: Optimal Transport Flow-Matching Audio Super-Resolution Harness},
url = {https://github.com/oldskool978/Furgie},
year = {2026}
}