YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

from transformers import AutoModelForTextToSpeech, AutoProcessor

model_name = "speechbrain/tts-tacotron2-1jspeech" model = AutoModelForTextToSpeech.from_pretrained(model_name) processor = AutoProcessor.from_pretrained(model_name)

text = "Hello, world!" inputs = processor(text, return_tensors="pt") speech = model.generate(inputs)

with open("output.wav", "wb") as f: f.write(speech.numpy()[0])
license: apache-2.0 datasets: - fka/awesome-chatgpt-prompts language: - en metrics: - accuracy base_model: Goldeath/ElevenLabs library_name: adapter-transformers

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.