嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
一个Text to speech开源框架,
Tacotron-2-master
├── LICENSE
├── README.md
├── datasets
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ ├── audio.cpython-36.pyc
│ │ └── preprocessor.cpython-36.pyc
│ ├── audio.py
│ ├── preprocessor.py
│ └── wavenet_preprocessor.py
├── griffin_lim_synthesis_tool.ipynb
├── hparams.py
├── infolog.py
├── papers
│ ├── (content location)\ attention.pdf
│ ├── Tacotron\ 2\ revised.pdf
│ ├── bahdanau\ (content)\ attention.pdf
│ ├── deepvoice\ 3.pdf
│ ├── effective\ approaches\ attention.pdf
│ ├── fast_wavenet.pdf
│ ├── tacotron.pdf
│ ├── tacotron2.pdf
│ └── wavenet.pdf
├── preprocess.py
├── requirements.txt
├── sentences.txt
├── synthesize.py
├── tacotron
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ ├── feeder.cpython-36.pyc
│ │ ├── synthesize.cpython-36.pyc
│ │ ├── synthesizer.cpython-36.pyc
│ │ └── train.cpython-36.pyc
│ ├── feeder.py
│ ├── models
│ │ ├── Architecture_wrappers.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── Architecture_wrappers.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── attention.cpython-36.pyc
│ │ │ ├── custom_decoder.cpython-36.pyc
│ │ │ ├── helpers.cpython-36.pyc
│ │ │ ├── modules.cpython-36.pyc
│ │ │ └── tacotron.cpython-36.pyc
│ │ ├── attention.py
│ │ ├── custom_decoder.py
│ │ ├── helpers.py
│ │ ├── modules.py
│ │ └── tacotron.py
│ ├── synthesize.py
│ ├── synthesizer.py
│ ├── train.py
│ └── utils
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ ├── cleaners.cpython-36.pyc
│ │ ├── cmudict.cpython-36.pyc
│ │ ├── numbers.cpython-36.pyc
│ │ ├── plot.cpython-36.pyc
│ │ ├── symbols.cpython-36.pyc
│ │ └── text.cpython-36.pyc
│ ├── cleaners.py
│ ├── cmudict.py
│ ├── numbers.py
│ ├── plot.py
│ ├── symbols.py
│ └── text.py
├── test_wavenet_feeder.py
├── train.py
├── wav_out
├── wavenet_preprocess.py
└── wavenet_vocoder
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-36.pyc
│ ├── feeder.cpython-36.pyc
│ ├── train.cpython-36.pyc
│ └── util.cpython-36.pyc
├── feeder.py
├── models
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ ├── gaussian.cpython-36.pyc
│ │ ├── mixture.cpython-36.pyc
│ │ ├── modules.cpython-36.pyc
│ │ └── wavenet.cpython-36.pyc
│ ├── gaussian.py
│ ├── mixture.py
│ ├── modules.py
│ └── wavenet.py
├── synthesize.py
├── synthesizer.py
├── train.py
└── util.py
14 directories, 86 files