Views
No views yet
ekwek/Soprano-80M using mlx-audio version 0.2.10.
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/Soprano-80M-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/Soprano-80M-4bit")
4 generate_audio(
5 model=model, text="Hello, this is a test.",
6 file_prefix="test_audio",
7 )
8