Views
No views yet
.safetensors for the mlx-speech runtime.ResembleAI/Dramabox, built on Lightricks/LTX-2.3Requires a separate text encoder. DramaBox conditions on a Gemma 3 12B backbone. Download it from the paired repo:appautomaton/gemma-3-12b-it-backbone-4bit-mlx.
| File | Component | Format | Size |
|---|---|---|---|
dramabox-dit-v1.safetensors | Flow-matching audio DiT (3.3B, 48 layers) | bf16 | ~6.6 GB |
dramabox-audio-components.safetensors | Audio VAE, BigVGAN/BWE vocoder, connector, aggregate embed | bf16 | ~1.9 GB |
config.json | Architecture and inference defaults | JSON | n/a |
assets/silence_latent_frame.pt | Training metadata, unused at inference | n/a | small |
1# 1. DramaBox weights
2hf download appautomaton/dramabox-tts-3.3b-bf16-mlx \
3 --local-dir models/dramabox/mlx-bf16
4
5# 2. Gemma 3 12B text-encoder backbone (paired repo)
6hf download appautomaton/gemma-3-12b-it-backbone-4bit-mlx \
7 --local-dir models/gemma_3_12b_it_backbone/mlx-4bit1from mlx_speech.generation.dramabox import DramaBoxModel
2
3model = DramaBoxModel.from_dir(
4 "models/dramabox/mlx-bf16",
5 gemma_dir="models/gemma_3_12b_it_backbone/mlx-4bit",
6)
7result = model.generate(
8 'A woman speaks clearly, "The weather today will be sunny."',
9 duration_s=5.0,
10 cfg_scale=2.5,
11)
12# result.waveform : mx.array [2, T_samples], result.sample_rate : 480001python scripts/generate_dramabox.py \
2 --dramabox-dir models/dramabox/mlx-bf16 \
3 --gemma-dir models/gemma_3_12b_it_backbone/mlx-4bit \
4 --prompt 'A woman speaks clearly.' \
5 --duration 5.0 \
6 --out outputs/dramabox.wavvoice_ref= to condition on a speaker; the waveform→mel front-end and the appended reference latent are fully implemented.stg_scale=1.5, block 29), matching the warm-server reference. Set stg_scale=0 for CFG-only.denoise_ref=True to clean the voice reference with the RE-USE / SEMamba enhancer before conditioning (non-commercial weights; default off).appautomaton/mlx-speechappautomaton/gemma-3-12b-it-backbone-4bit-mlxappautomaton/re-use-semamba-mlxLICENSE in this repo). Use is also subject to the terms of the upstream ResembleAI/Dramabox release.