Duplicated from suno/bark
How to use mvwinchester/bark with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="mvwinchester/bark")
# Load model directly from transformers import AutoProcessor, AutoModelForTextToWaveform processor = AutoProcessor.from_pretrained("mvwinchester/bark") model = AutoModelForTextToWaveform.from_pretrained("mvwinchester/bark")