speechbrain / tts-mstacotron2-libritts

huggingface.co
Total runs: 25
24-hour runs: 0
7-day runs: 2
30-day runs: 1
Model's Last Updated: February 27 2024

Introduction of tts-mstacotron2-libritts

Model Details of tts-mstacotron2-libritts



Text-to-Speech (TTS) with Zero-Shot Multi-Speaker Tacotron2 trained on LibriTTS

Please Note : The current model effectively captures speaker identities. Nevertheless, the synthesized speech quality exhibits some metallic characteristics and may include artifacts like overly long pauses. We are actively working to enhancing the model and will release updates as soon as improvements are achieved. We warmly welcome contributions from the community to collaboratively make the model even better!

This repository provides all the necessary tools for Zero-Shot Multi-Speaker Text-to-Speech (TTS) with SpeechBrain using a variation of Tacotron2 , extended to incorporate speaker identity information when generating speech. It is pretrained on LibriTTS .

The pre-trained model takes as input a short text and a reference speech sample. The model output is a mel-spectrogram corresponding to the input text with the voice characteristics of the speaker from the reference speech. One can get the final waveform by applying a vocoder (e.g., HiFIGAN) on top of the generated mel-spectrogram.

Install SpeechBrain
pip install speechbrain

Please notice that we encourage you to read our tutorials and learn more about SpeechBrain .

Perform Text-to-Speech (TTS)

The following is an example of converting text-to-speech with the speaker voice characteristics extracted from reference speech.

Note:

  • The model generates speech at a rate of 22050 Hz, but it's important to note that the input signal, crucial for capturing speaker identities, must be sampled at 16kHz.
import torchaudio
from speechbrain.inference.TTS import MSTacotron2
from speechbrain.inference.vocoders import HIFIGAN

# Intialize TTS (mstacotron2) and Vocoder (HiFIGAN)
ms_tacotron2 = MSTacotron2.from_hparams(source="speechbrain/tts-mstacotron2-libritts", savedir="pretrained_models/tts-mstacotron2-libritts")
hifi_gan = HIFIGAN.from_hparams(source="speechbrain/tts-hifigan-libritts-22050Hz", savedir="pretrained_models/tts-hifigan-libritts-22050Hz")

# Required input
REFERENCE_SPEECH = "speech_sample.wav"
INPUT_TEXT = "Mary had a little lamb"

# Running the Zero-Shot Multi-Speaker Tacotron2 model to generate mel-spectrogram
mel_outputs, mel_lengths, alignments = ms_tacotron2.clone_voice(INPUT_TEXT, REFERENCE_SPEECH)

# Running Vocoder (spectrogram-to-waveform)
waveforms = hifi_gan.decode_batch(mel_outputs)

# Save the waverform
torchaudio.save("synthesized_sample.wav", waveforms.squeeze(1).cpu(), 22050)

If you want to generate a random voice, you can use the following:

import torchaudio
from speechbrain.inference.TTS import MSTacotron2
from speechbrain.inference.vocoders import HIFIGAN

# Intialize TTS (mstacotron2) and Vocoder (HiFIGAN)
ms_tacotron2 = MSTacotron2.from_hparams(source="speechbrain/tts-mstacotron2-libritts", savedir="pretrained_models/tts-mstacotron2-libritts")
hifi_gan = HIFIGAN.from_hparams(source="speechbrain/tts-hifigan-libritts-22050Hz", savedir="pretrained_models/tts-hifigan-libritts-22050Hz")

# Required input
INPUT_TEXT = "Mary had a little lamb"

# Running the Zero-Shot Multi-Speaker Tacotron2 model to generate mel-spectrogram
mel_outputs, mel_lengths, alignments = ms_tacotron2.generate_random_voice(INPUT_TEXT)

# Running Vocoder (spectrogram-to-waveform)
waveforms = hifi_gan.decode_batch(mel_outputs)

# Save the waverform
torchaudio.save("synthesized_sample.wav", waveforms.squeeze(1).cpu(), 22050)

If you want to generate multiple sentences in one-shot, you can do it this way: Note: The model internally reorders the input texts in the decreasing order of their lengths.

import torchaudio
from speechbrain.inference.TTS import MSTacotron2
from speechbrain.inference.vocoders import HIFIGAN

# Intialize TTS (mstacotron2) and Vocoder (HiFIGAN)
ms_tacotron2 = MSTacotron2.from_hparams(source="speechbrain/tts-mstacotron2-libritts", savedir="pretrained_models/tts-mstacotron2-libritts")
hifi_gan = HIFIGAN.from_hparams(source="speechbrain/tts-hifigan-libritts-22050Hz", savedir="pretrained_models/tts-hifigan-libritts-22050Hz")

# Required input
REFERENCE_SPEECH = "speech_sample.wav"
INPUT_TEXT = ["Welcome to the demo", "Convert text to speech"]

# Running the Zero-Shot Multi-Speaker Tacotron2 model to generate mel-spectrogram
mel_outputs, mel_lengths, alignments = ms_tacotron2.clone_voice(INPUT_TEXT, REFERENCE_SPEECH)

# Running Vocoder (spectrogram-to-waveform)
waveforms = hifi_gan.decode_batch(mel_outputs)

# Save the waverforms
for i in range(len(waveforms)):
    synthesized_audio_path = f"synthesized_sample_{i}.wav"
    torchaudio.save(synthesized_audio_path, waveforms[i].squeeze(1).cpu(), 22050)
Inference on GPU

To perform inference on the GPU, add run_opts={"device":"cuda"} when calling the from_hparams method.

Training

The model was trained with SpeechBrain. To train it from scratch follow these steps:

  1. Clone SpeechBrain:
git clone https://github.com/speechbrain/speechbrain/
  1. Install it:
cd speechbrain
pip install -r requirements.txt
pip install -e .
  1. Run Training:
cd recipes/LibriTTS/TTS/mstacotron2/
python train.py hparams/train.yaml --data_folder=/path/to/libritts_data --device=cuda:0 --max_grad_norm=1.0

The training logs will be available here in the future.

Limitations

The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.

About SpeechBrain

Citing SpeechBrain

Please, cite SpeechBrain if you use it for your research or business.

@misc{speechbrain,
  title={{SpeechBrain}: A General-Purpose Speech Toolkit},
  author={Mirco Ravanelli and Titouan Parcollet and Peter Plantinga and Aku Rouhe and Samuele Cornell and Loren Lugosch and Cem Subakan and Nauman Dawalatabad and Abdelwahab Heba and Jianyuan Zhong and Ju-Chieh Chou and Sung-Lin Yeh and Szu-Wei Fu and Chien-Feng Liao and Elena Rastorgueva and François Grondin and William Aris and Hwidong Na and Yan Gao and Renato De Mori and Yoshua Bengio},
  year={2021},
  eprint={2106.04624},
  archivePrefix={arXiv},
  primaryClass={eess.AS},
  note={arXiv:2106.04624}
}

Runs of speechbrain tts-mstacotron2-libritts on huggingface.co

25
Total runs
0
24-hour runs
0
3-day runs
2
7-day runs
1
30-day runs

More Information About tts-mstacotron2-libritts huggingface.co Model

More tts-mstacotron2-libritts license Visit here:

https://choosealicense.com/licenses/apache-2.0

tts-mstacotron2-libritts huggingface.co

tts-mstacotron2-libritts huggingface.co is an AI model on huggingface.co that provides tts-mstacotron2-libritts's model effect (), which can be used instantly with this speechbrain tts-mstacotron2-libritts model. huggingface.co supports a free trial of the tts-mstacotron2-libritts model, and also provides paid use of the tts-mstacotron2-libritts. Support call tts-mstacotron2-libritts model through api, including Node.js, Python, http.

tts-mstacotron2-libritts huggingface.co Url

https://huggingface.co/speechbrain/tts-mstacotron2-libritts

speechbrain tts-mstacotron2-libritts online free

tts-mstacotron2-libritts huggingface.co is an online trial and call api platform, which integrates tts-mstacotron2-libritts's modeling effects, including api services, and provides a free online trial of tts-mstacotron2-libritts, you can try tts-mstacotron2-libritts online for free by clicking the link below.

speechbrain tts-mstacotron2-libritts online free url in huggingface.co:

https://huggingface.co/speechbrain/tts-mstacotron2-libritts

tts-mstacotron2-libritts install

tts-mstacotron2-libritts is an open source model from GitHub that offers a free installation service, and any user can find tts-mstacotron2-libritts on GitHub to install. At the same time, huggingface.co provides the effect of tts-mstacotron2-libritts install, users can directly use tts-mstacotron2-libritts installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

tts-mstacotron2-libritts install url in huggingface.co:

https://huggingface.co/speechbrain/tts-mstacotron2-libritts

Url of tts-mstacotron2-libritts

tts-mstacotron2-libritts huggingface.co Url

Provider of tts-mstacotron2-libritts huggingface.co

speechbrain
ORGANIZATIONS

Other API from speechbrain

huggingface.co

Total runs: 3.2K
Run Growth: 2.2K
Growth Rate: 64.32%
Updated:February 26 2024