Views
No views yet
maya-research/maya1 using mlx-audio version 0.2.9.
Refer to the original model card for more details on the model.pip install -U mlx-audio python -m mlx_audio.tts.generate --model mlx-community/maya1-4bit --text "Hello, this is a test."1 from mlx_audio.tts.utils import load_model
2 from mlx_audio.tts.generate import generate_audio
3 model = load_model("mlx-community/maya1-4bit")
4 generate_audio(
5 model=model, text="Hello, this is a test.",
6 ref_audio="path_to_audio.wav",
7 file_prefix="test_audio",
8 )
9