1 Star 0 Fork 5

FreshMan/TTS-Clone-Chinese

forked from rjyrjy/TTS-Clone-Chinese 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
demo_toolbox.py 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
Deng 提交于 2020-02-25 16:52 . first
from pathlib import Path
from toolbox import Toolbox
from utils.argutils import print_args
import argparse
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description="Runs the toolbox",
formatter_class=argparse.ArgumentDefaultsHelpFormatter
)
parser.add_argument("-d", "--datasets_root", type=Path, help= \
"Path to the directory containing your datasets. See toolbox/__init__.py for a list of "
"supported datasets. You can add your own data by created a directory named UserAudio "
"in your datasets root. Supported formats are mp3, flac, wav and m4a. Each speaker should "
"be inside a directory, e.g. <datasets_root>/UserAudio/speaker_01/audio_01.wav.",
default=None)
parser.add_argument("-e", "--enc_models_dir", type=Path, default="encoder/saved_models",
help="Directory containing saved encoder models")
parser.add_argument("-s", "--syn_models_dir", type=Path, default="synthesizer/saved_models",
help="Directory containing saved synthesizer models")
parser.add_argument("-v", "--voc_models_dir", type=Path, default="vocoder/saved_models",
help="Directory containing saved vocoder models")
parser.add_argument("--low_mem", action="store_true", help=\
"If True, the memory used by the synthesizer will be freed after each use. Adds large "
"overhead but allows to save some GPU memory for lower-end GPUs.")
args = parser.parse_args()
# Launch the toolbox
print_args(args, parser)
Toolbox(**vars(args))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/DaxiaFreshMan/TTS-Clone-Chinese.git
git@gitee.com:DaxiaFreshMan/TTS-Clone-Chinese.git
DaxiaFreshMan
TTS-Clone-Chinese
TTS-Clone-Chinese
master

搜索帮助