Instructions to use facebook/mms-tts-mrw with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/mms-tts-mrw with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="facebook/mms-tts-mrw")# Load model directly from transformers import AutoTokenizer, AutoModelForTextToWaveform tokenizer = AutoTokenizer.from_pretrained("facebook/mms-tts-mrw") model = AutoModelForTextToWaveform.from_pretrained("facebook/mms-tts-mrw", device_map="auto") - Notebooks
- Google Colab
- Kaggle
The model_type 'vits' is not recognized. It could be a bleeding edge model, or incorrect
#1
by airsheysr - opened
Trying out Inference API gives me this error: "The model_type 'vits' is not recognized. It could be a bleeding edge model, or incorrect."
Any idea how we can correct this issue?
Is there any workaround for this issue? Sorry, newbie here. π
It's coming, the API doesn't necessarily follow the main transformers branch all the time.