Downloads · 30 days
15
12% of all-time downloads
mlx-community/bark
bark is a machine learning model from mlx-community. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
Downloads · 30 days
15
12% of all-time downloads
All-time downloads
122
Public
Parameters
774M
8.8 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors4.4 GB · 100%
From the Hugging Face model README
MLX format conversion of suno/bark.
Bark is a transformer-based text-to-speech model by Suno.
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)