Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
21c75684
D
DeepSpeech
项目概览
PaddlePaddle
/
DeepSpeech
大约 2 年 前同步成功
通知
210
Star
8425
Fork
1598
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
245
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
DeepSpeech
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
245
Issue
245
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
21c75684
编写于
4月 08, 2022
作者:
小湉湉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add paddle2onnx, test=tts
上级
124eb6af
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
38 addition
and
2 deletion
+38
-2
examples/csmsc/tts3/local/ort_predict.sh
examples/csmsc/tts3/local/ort_predict.sh
+2
-2
examples/csmsc/tts3/local/paddle2onnx.sh
examples/csmsc/tts3/local/paddle2onnx.sh
+22
-0
examples/csmsc/tts3/run.sh
examples/csmsc/tts3/run.sh
+14
-0
未找到文件。
examples/csmsc/tts3/local/ort_predict.sh
浏览文件 @
21c75684
...
...
@@ -3,7 +3,7 @@ train_output_path=$1
stage
=
0
stop_stage
=
0
# only support default_fastspeech2 + hifigan now!
# only support default_fastspeech2 + hifigan
/mb_melgan
now!
# synthesize from metadata
if
[
${
stage
}
-le
0
]
&&
[
${
stop_stage
}
-ge
0
]
;
then
...
...
@@ -28,4 +28,4 @@ if [ ${stage} -le 1 ] && [ ${stop_stage} -ge 1 ]; then
--phones_dict
=
dump/phone_id_map.txt
\
--device
=
cpu
\
--cpu_threads
=
2
fi
\ No newline at end of file
fi
examples/csmsc/tts3/local/paddle2onnx.sh
0 → 100755
浏览文件 @
21c75684
train_output_path
=
$1
model_dir
=
$2
output_dir
=
$3
model
=
$4
enable_dev_version
=
True
model_name
=
${
model
%_*
}
echo
model_name:
${
model_name
}
if
[
${
model_name
}
=
'mb_melgan'
]
;
then
enable_dev_version
=
False
fi
mkdir
-p
${
train_output_path
}
/
${
output_dir
}
paddle2onnx
\
--model_dir
${
train_output_path
}
/
${
model_dir
}
\
--model_filename
${
model
}
.pdmodel
\
--params_filename
${
model
}
.pdiparams
\
--save_file
${
train_output_path
}
/
${
output_dir
}
/
${
model
}
.onnx
\
--enable_dev_version
${
enable_dev_version
}
\ No newline at end of file
examples/csmsc/tts3/run.sh
浏览文件 @
21c75684
...
...
@@ -41,3 +41,17 @@ if [ ${stage} -le 4 ] && [ ${stop_stage} -ge 4 ]; then
CUDA_VISIBLE_DEVICES
=
${
gpus
}
./local/inference.sh
${
train_output_path
}
||
exit
-1
fi
# paddle2onnx, please make sure the static models are in ${train_output_path}/inference first
# we have only tested the following models so far
if
[
${
stage
}
-le
5
]
&&
[
${
stop_stage
}
-ge
5
]
;
then
pip
install
paddle2onnx
==
0.9.4
./local/paddle2onnx.sh
${
train_output_path
}
inference inference_onnx fastspeech2_csmsc
./local/paddle2onnx.sh
${
train_output_path
}
inference inference_onnx hifigan_csmsc
./local/paddle2onnx.sh
${
train_output_path
}
inference inference_onnx mb_melgan_csmsc
fi
# inference with onnxruntime, use fastspeech2 + hifigan by default
if
[
${
stage
}
-le
6
]
&&
[
${
stop_stage
}
-ge
6
]
;
then
# pip install onnxruntime
./local/ort_predict.sh
${
train_output_path
}
fi
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录