How to use from the
Use from the
Transformers library
# 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, device_map="auto")
Quick Links

HiFi-GAN

HiFi-GAN vocoder trained on the LJ Speech dataset. The modeling code is based on the official implementation and the fairseq adaptation.

Usage

from transformers import AutoModel

model = AutoModel.from_pretrained("jaketae/hifigan-lj-v1", trust_remote_code=True)
Downloads last month
25
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for jaketae/hifigan-lj-v1