1from mlx_tada import TadaForCausalLM, save_wav
23model = TadaForCausalLM.from_pretrained("HumeAI/mlx-tada-3b", 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")
Offline Use
To download the weights locally for offline inference:
model = TadaForCausalLM.from_weights("./weights/3b", quantize=4)
CLI
bash
1python -m mlx_tada.generate \2 --weights ./weights/3b \3 --audio ljspeech.wav \4 --text "Hello, this is a test of TADA speech synthesis."\5 --quantize 4\6 --output output.wav
Hardware Requirements
Precision
Memory
bfloat16 (default)
~17 GB
4-bit quantized
~6 GB
4-bit quantization is recommended for most Apple Silicon devices — it is roughly 10x faster with 60% less memory and minimal quality loss. Machines with 16 GB unified memory should use quantized mode.
Related
TADA GitHub — source code, PyTorch inference, training
If you use this project in your research, please cite our paper:
bibtex
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}
Contact
Hume AI is an empathic AI research company. We research the datasets, tools, and models needed to give empathy to AI models to serve human wellbeing. If you're interested in any of our product or research collaborations, please reach out to us at hello@hume.ai
Acknowledgements
This project is built using Llama 3.2.
Llama 3.2 is licensed under the Llama 3.2 Community License