Source code for models.text2speech_tacotron

# Copyright (c) 2019 NVIDIA Corporation

from .text2speech import Text2Speech


[docs]class Text2SpeechTacotron(Text2Speech): """ Text-to-speech data layer for Tacotron. """
[docs] def get_alignments(self, attention_mask): specs = [attention_mask] titles = ["alignments"] return specs, titles