We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef83028 commit 77071daCopy full SHA for 77071da
README.md
@@ -44,11 +44,9 @@ See [here](./f5_tts_mlx) for more options to customize generation.
44
You can load a pretrained model from Python like this:
45
46
```python
47
-from f5_tts_mlx import F5TTS
+from f5_tts_mlx.generate import generate
48
49
-f5tts = F5TTS.from_pretrained("lucasnewman/f5-tts-mlx")
50
-
51
-audio = f5tts.sample(...)
+audio = generate(text = "Hello world.", ...)
52
```
53
54
Pretrained model weights are also available [on Hugging Face](https://huggingface.co/lucasnewman/f5-tts-mlx).
0 commit comments