
Full-band MossFormer2 speech denoiser. Mixes each AudioFrame to mono, resamples to 48 kHz, denoises with the MossFormer2_SE_48K checkpoint, and emits one mono 48 kHz AudioFrame per input. Pick for offline batch cleanup where enhancement quality outweighs latency.
Batch transcription with maximum cleanup: a recorded file is denoised by the full-band model before transcription for the highest-quality ASR.
Captured-microphone cleanup ahead of voice gating: webcam audio is enhanced before voice-activity detection.
AudioFrame yields exactly one output AudioFrame. An empty input frame is returned unchanged at its original rate without invoking the model, so it is the one case the output is not 48 kHz.device is fixed at startup with no runtime mutation; changing it requires a redeploy, and it falls back to CPU when no GPU is present — CPU mode is well below real-time for this model. The MossFormer2_SE_48K weights are fetched by the ClearVoice runtime on first deploy and cached, so the first call also pays the download and cold-kernel cost.Automated release