Views
No views yet
callenhancer engine in
audiosronnx — call-centre / telephony
speech restoration, 16 kHz → 48 kHz.feature_extractor.int8.onnx — the full 24-layer w2v-BERT 2.0 feature predictor
(LoRA merged into the base weights), int8-quantized for CPU. Maps SeamlessM4T log-mel
features [1, T, 160] → hidden states [1, T, 1024] at 50 Hz.decoder.onnx — the 188 M-param DAC vocoder (fp32), [1, 1024, T] →
[1, 1, 960·T] 48 kHz waveform.1from audiosronnx import load_sr
2
3sr = load_sr("callenhancer")
4sr.upscale_file("call_8k.wav", "restored_48k.wav")