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
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
HF Inference API was unable to determine this model's library.