私有化部署TTS
# 下载并解压模型
- 执行模型下载命令:
wget http://down.ddrj.com/paddlespeech_tts.zip
- 解压模型命令:
unzip -d /ddt/asrproxy paddlespeech_tts.zip
# 配置asrproxy.json文件
模型下载完成后,需要将以下的参数配置到 asrproxy.json 文件中,然后保存退出,重启 asrproxy 程序使配置文件生效:
{
"tts":{
"interface":{
"paddlespeech": {
"type": "paddlespeech",
"front_conf":"paddlespeech_tts/front.conf",
"am_model":"paddlespeech_tts/weights/fastspeech2_csmsc.onnx",
"voc_model":"paddlespeech_tts/weights/mb_melgan_csmsc.onnx",
"thread_num":1
}
},
"groups":{
"default":{
"mode":1,
"enable":[
"paddlespeech"
]
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
上次更新: 2024/10/10, 19:01:45