# reuse | | | |---|---| | **Model type** | `reuse` | | **Class** | `SEMambaSpeechEnhancementModel` | | **Task** | `speech-enhancement` | | **Source** | `models/reuse.py` | ## Description NVIDIA RE-USE (SEMamba) universal speech enhancement generator. Consumes the magnitude and phase of a noisy STFT and predicts the enhanced magnitude, phase, and complex spectrogram. The magnitude is expected to already be compressed by the STFT front-end (RE-USE uses ``log1p``); decompression and the ISTFT happen after this graph. ## Usage ```bash mobius build --model output_dir/ ``` ```python from mobius import build model = build("") ```