bark / README.md
roboalchemist's picture
Upload folder using huggingface_hub
59c9414 verified

mlx-community/bark

MLX format conversion of suno/bark.

Original model

Bark is a transformer-based text-to-speech model by Suno.

Use with mlx-audio

from mlx_audio.tts.utils import load_model

model = load_model("mlx-community/bark")
for result in model.generate("Hello, this is a test of the Bark TTS model."):
    print(result.audio.shape, result.sample_rate)