Instructions to use mlx-community/Irodori-TTS-600M-v3-VoiceDesign-8bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/Irodori-TTS-600M-v3-VoiceDesign-8bit with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir Irodori-TTS-600M-v3-VoiceDesign-8bit mlx-community/Irodori-TTS-600M-v3-VoiceDesign-8bit
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
mlx-community/Irodori-TTS-600M-v3-VoiceDesign-8bit
This model was converted to MLX format from Aratako/Irodori-TTS-600M-v3-VoiceDesign using mlx-audio version 0.4.3.
Quantized to 8-bit (group_size=64). For full precision see mlx-community/Irodori-TTS-600M-v3-VoiceDesign-fp16.
Refer to the original model card for more details on the model.
The v3 VoiceDesign variant supports dual conditioning: a text caption describing the desired voice style, and optionally a reference audio clip. Both can be provided simultaneously.
Use with mlx-audio
pip install -U mlx-audio
Caption only (no reference audio)
python -m mlx_audio.tts.generate \
--model mlx-community/Irodori-TTS-600M-v3-VoiceDesign-8bit \
--text "ใใใซใกใฏใใในใใงใใ" \
--instruct "็ฉใใใง่ฝใก็ใใๅฅณๆงใฎๅฃฐใใใฃใใใจ่ฉฑใใ"
Reference audio + caption (dual mode)
python -m mlx_audio.tts.generate \
--model mlx-community/Irodori-TTS-600M-v3-VoiceDesign-8bit \
--text "ใใใซใกใฏใใในใใงใใ" \
--ref_audio path/to/reference.wav \
--instruct "็ฉใใใง่ฝใก็ใใ่ฉฑใๆนใ"
Python Example
from mlx_audio.tts.utils import load
model = load("mlx-community/Irodori-TTS-600M-v3-VoiceDesign-8bit")
# Caption only
results = list(model.generate(
"ใใใซใกใฏใใในใใงใใ",
caption="็ฉใใใง่ฝใก็ใใๅฅณๆงใฎๅฃฐใ",
))
# Dual mode (ref audio + caption)
import mlx.core as mx
ref_audio = mx.array(...) # shape (1, num_samples)
results = list(model.generate(
"ใใใซใกใฏใใในใใงใใ",
ref_audio=ref_audio,
caption="็ฉใใใง่ฝใก็ใใ่ฉฑใๆนใ",
))
- Downloads last month
- 106
Model size
0.3B params
Tensor type
U32
ยท
F16 ยท
Hardware compatibility
Log In to add your hardware
Quantized