BigVGAN is a universal neural vocoder with large-scale training. The current version is 2.4.1, with active development and monthly releases.
pip install bigvganNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Load a pretrained BigVGAN model and generate audio from a mel-spectrogram.
Update import statement to `from bigvgan.utils import load_checkpoint`.
Use `BigVGAN()` and `load_checkpoint` instead.
Ensure mel-spectrogram has 80 bins or adjust model configuration.
Reshape or generate mel with 80 bins. Example: `mel = librosa.feature.melspectrogram(y=y, sr=sr, n_mels=80)`.
Upgrade to latest version: `pip install --upgrade bigvgan`. For older versions, import from `bigvgan` directly.
Use `model = BigVGAN()` and load checkpoint manually with `load_checkpoint(model, path)`.
No resource links recorded.