Instructions to use suno/bark with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use suno/bark with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="suno/bark")# Load model directly from transformers import AutoProcessor, AutoModelForTextToWaveform processor = AutoProcessor.from_pretrained("suno/bark") model = AutoModelForTextToWaveform.from_pretrained("suno/bark") - Notebooks
- Google Colab
- Kaggle
Garbled audio
#47
by MForrest00 - opened
Does anyone else get back garbled audio from the Inference API? I ran the Python example exactly as shown, and the audio I receive back is heavily distorted, garbled, etc. This is the case whether I play the audio from within a Jupyter notebook (using iPython Audio) or whether I write to a file.