NVIDIA
NVIDIA
TTS En E2E Fastspeech2 Hifigan
Model
NVIDIA
NVIDIA
TTS En E2E Fastspeech2 Hifigan

FastSpeech2+HiFiGAN End-to-End Speech Synthesis model trained on female English speech

Model Overview

FastSpeech2HifiGanE2E is an end-to-end, non-autoregressive model that generates audio from text. It combines FastSpeech2 and HiFiGan into one model and is traned jointly in an end-to-end manner.

Model Architecture

The FastSpeech2 portion consists of the same transformer-based encoder, and a 1D-convolution-based variance adaptor as the original FastSpeech2 model. The HiFiGan portion takes the discriminator from HiFiGan and uses it to generate audio from the output of the fastspeech2 portion. No spectrograms are used in the training of the model. All losses are taken from HiFiGan plus additional losses for the variance adaptor.

Training

This model is trained on LJSpeech sampled at 22050Hz, and has been tested on generating female English voices with an American accent. Supplementary data (durations, pitches, energies) were calculated using dataset preprocessing scripts that can be found in the NeMo library.

Performance

No performance information available at this time.

How to Use this Model

This model can be automatically loaded from NGC.

import soundfile as sf
from nemo.collections.tts.models import FastSpeech2HifiGanE2EModel

# Load the model from NGC
model = FastSpeech2HifiGanE2EModel.from_pretrained(model_name="tts_en_e2e_fastspeech2hifigan")

# Run inference
tokens = model.parse("Hey, I can speak!")
audio = model.convert_text_to_waveform(tokens=tokens)

# Save the audio to disk in a file called speech.wav
sf.write("speech.wav", audio.to('cpu').numpy(), 22050)

Input

This model accepts batches of text.

Output

This model generates audio.

Limitations

This model outputs audio at 22050Hz.

Versions

1.0.0 (current): The original version released with NeMo 1.0.0.

References

FastSpeech 2/2s paper: https://arxiv.org/abs/2006.04558

LJSpeech preprocessing scripts: https://github.com/NVIDIA/NeMo/tree/v1.0.0/scripts/dataset_processing/ljspeech

Licence

License to use this model is covered by the NGC TERMS OF USE unless another License/Terms Of Use/EULA is clearly specified. By downloading the public and release version of the model, you accept the terms and conditions of the NGC TERMS OF USE.

Publisher
NVIDIA
NVIDIA
Latest Version1.0.0
UpdatedApril 4, 2023 UTC
Compressed Size352.87 MB

NVIDIA uses cookies to improve your experience on our web site. We and our third-party partners also use cookies and other tools to collect and record information you provide as well as information about your interactions with our websites for performance improvement, analytics, and to assist in marketing efforts. By clicking "Accept All", you consent to our use of cookies and other tools as described in our Cookie Policy. You can manage your cookie settings by clicking on "Manage Settings." By continuing to use this site or by clicking one of the buttons below, you agree to our Terms of Service (which contains important waivers). Please see our Privacy Policy for more information on our privacy practices.