Views
No views yet
denoise_ref=True, giving the cloning model a clean speaker anchor.Non-commercial weights. These weights derive from NVIDIA RE-USE, licensed under the NVIDIA Source Code License (non-commercial). See the License section.
nvidia/RE-USE (SEMamba, bidirectional Mamba over STFT magnitude + phase)denoise_ref=True. Optional, off by default..safetensors (1416 keys, ~9.6M params). No quantization, no architecture change.mamba_ssm selective_scan_ref reference math, so no CUDA kernels (mamba-ssm / causal-conv1d) are required.| File | Component | Format | Size |
|---|---|---|---|
model.safetensors | SEMamba enhancer | fp32 | ~38 MB |
config.json | Model + STFT config | JSON | n/a |
1import mlx_speech
2
3tts = mlx_speech.tts.load("dramabox")
4result = tts.generate(
5 "Voice cloning from a noisy reference.",
6 reference_audio="noisy_speaker.wav",
7 denoise_ref=True, # cleans the reference with this model first
8)tts.load("dramabox") resolves these weights automatically. To run the enhancer
directly:hf download appautomaton/re-use-semamba-mlx --local-dir models/reuse/mlx1from pathlib import Path
2from mlx_speech.generation.reuse import REUSEEnhancer
3
4enhancer = REUSEEnhancer.from_dir(Path("models/reuse/mlx"))
5clean = enhancer.enhance(noisy_waveform, in_sr=16000) # mono in, mono outappautomaton/mlx-speechappautomaton/dramabox-tts-3.3b-bf16-mlxnvidia/RE-USE and remain
governed by NVIDIA's license terms; by downloading or using them you agree to
those terms. They may not be used commercially. Set denoise_ref=False (the
default) to run DramaBox voice cloning without this model. The mlx-speech
runtime code is MIT.