Views
No views yet
| Component | File | Size |
|---|---|---|
| LLM + VibeVoice head | model/weights.safetensors | 3.0 GB |
| Aligner | aligner/weights.safetensors | 852 MB |
| Decoder (DAC) | decoder/weights.safetensors | 226 MB |
| Encoder | encoder/weights.safetensors | 178 MB |
| Total | ~4.3 GB |
pip install mlx-tada1git clone https://github.com/HumeAI/tada.git
2cd tada/apple
3uv venv && uv pip install -e .curl -O "https://storage.googleapis.com/hume_reference_speakers/ljspeech.wav"1from mlx_tada import TadaForCausalLM, save_wav
2
3model = TadaForCausalLM.from_pretrained("HumeAI/mlx-tada-1b", quantize=4)
4ref = model.load_reference("ljspeech.wav")
5out = model.generate("Hello, this is a test of TADA speech synthesis.", ref)
6save_wav(out.audio, "output.wav")1from huggingface_hub import snapshot_download
2snapshot_download("HumeAI/mlx-tada-1b", local_dir="./weights/1b")model = TadaForCausalLM.from_weights("./weights/1b", quantize=4)1python -m mlx_tada.generate \
2 --weights ./weights/1b \
3 --audio ljspeech.wav \
4 --text "Hello, this is a test of TADA speech synthesis." \
5 --quantize 4 \
6 --output output.wav| Precision | Memory |
|---|---|
| bfloat16 (default) | ~8 GB |
| 4-bit quantized | ~3 GB |
1@article{dang2026tada,
2 title={TADA: A Generative Framework for Speech Modeling via Text-Acoustic Dual Alignment},
3 author={Dang, Trung and Rao, Sharath and Gupta, Ananya and Gagne, Christopher and Tzirakis, Panagiotis and Baird, Alice and Cłapa, Jakub Piotr and Chin, Peter and Cowen, Alan},
4 journal={arXiv preprint arXiv:2602.23068},
5 year={2026}
6}