定位相关的Tacotron
的PyTorch实现。 音频样本可以在找到。 可以在找到Colab演示。
图1: Tacotron(具有动态卷积注意)。
图2:示例梅尔谱图和注意图。
快速开始
确保您已安装Python 3.6和PyTorch 1.7或更高版本。 然后安装此软件包(以及):
pip install tacotron univoc
用法示例
import torch
import soundfile as sf
from univoc import Vocoder
from tacotron import load_cmudict , text_to_id , Tacotron
# download pretrained weights for the vocoder (and optionally move to GPU)
vocoder = Vocoder .
1