File size: 442 Bytes
7656006
 
59c9414
7656006
59c9414
7656006
59c9414
7656006
59c9414
7656006
59c9414
 
7656006
59c9414
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# mlx-community/bark

MLX format conversion of [suno/bark](https://huggingface.co/suno/bark).

## Original model

Bark is a transformer-based text-to-speech model by [Suno](https://suno.ai).

## Use with mlx-audio

```python
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)
```