Views
No views yet
fishaudio/s2-pro using mlx-audio version 0.4.0.| Attribute | Value |
|---|---|
| Total Parameters | 5B |
| Slow AR | 4B (time-axis, primary semantic codebook) |
| Fast AR | 400M (residual codebooks per time step) |
| Audio Codec | 10 codebooks @ ~21 Hz frame rate |
| Tensor Type | BF16 |
[tag] syntax with free-form textual descriptions (15,000+ supported tags):[whisper in small voice]
[professional broadcast tone]
[pitch up][pause] [emphasis] [laughing] [inhale] [chuckle] [tsk] [singing] [excited] [volume up] [echo] [angry] [whisper] [screaming] [sad] [shocked] and many more.pip install -U mlx-audiopython -m mlx_audio.tts.generate --model mlx-community/fish-audio-s2-pro-8bit --text "Hello, this is a test."1from mlx_audio.tts.utils import load_model
2from mlx_audio.tts.generate import generate_audio
3
4model = load_model("mlx-community/fish-audio-s2-pro-8bit")
5generate_audio(
6 model=model,
7 text="Hello, this is a test.",
8 ref_audio="path_to_audio.wav",
9 file_prefix="test_audio",
10)1@misc{liao2026fishaudios2technical,
2 title={Fish Audio S2 Technical Report},
3 author={Shijia Liao and Yuxuan Wang and Songting Liu and Yifan Cheng and Ruoyi Zhang and Tianyu Li and Shidong Li and Yisheng Zheng and Xingwei Liu and Qingzheng Wang and Zhizhuo Zhou and Jiahua Liu and Xin Chen and Dawei Han},
4 year={2026},
5 eprint={2603.08823},
6 archivePrefix={arXiv},
7 primaryClass={cs.SD},
8 url={https://arxiv.org/abs/2603.08823},
9}