Generate audio with a pre-existing model
masterTo generate audio using a pre-trained WaveGlow model, follow these steps:
- Download the published model.
- Download the mel-spectrograms.
- Run
inference.pyusing the following command structure:
python3 inference.py -f <(ls mel_spectrograms/*.pt) -w waveglow_256channels.pt -o . --is_fp16 -s 0.6Note: If you are using older models, use convert_model.py to convert them to the current format with fused residual and skip connections.