Transformers How to use trymtv/speecht5_tts_nps with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-audio", model="trymtv/speecht5_tts_nps") # Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("trymtv/speecht5_tts_nps")
model = AutoModelForTextToSpectrogram.from_pretrained("trymtv/speecht5_tts_nps")