HiFi-GAN: Generative Adversarial Networks for Efficient and High Fidelity Speech Synthesis
Paper • 2010.05646 • Published
How to use jaketae/hifigan-lj-v1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-speech", model="jaketae/hifigan-lj-v1", trust_remote_code=True) # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("jaketae/hifigan-lj-v1", trust_remote_code=True, dtype="auto")HiFi-GAN vocoder trained on the LJ Speech dataset. The modeling code is based on the official implementation and the fairseq adaptation.
from transformers import AutoModel
model = AutoModel.from_pretrained("jaketae/hifigan-lj-v1", trust_remote_code=True)