facebook/multilingual_librispeech
Viewer • Updated • 1.49M • 50.7k • 179
How to use mlx-community/parler-tts-mini with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir parler-tts-mini mlx-community/parler-tts-mini
This model was converted to MLX format from parler-tts/parler-tts-mini-multilingual-v1.1 using mlx-audio version 0.2.8.
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/parler-tts-mini --text "Hello, this is a test."
from mlx_audio.tts.utils import load_model
from mlx_audio.tts.generate import generate_audio
model = load_model("mlx-community/parler-tts-mini")
generate_audio(
model=model,
text="Hello, this is a test.",
ref_audio="path_to_audio.wav",
file_prefix="test_audio",
)
Quantized