We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
从 2022.10.24日起,把遇到的问题汇总在这里,以便让开发者能够较快的找到解决方案。后期如果问题增多的再进行分类。
1、【paddle2onnx】paddle模型转onnx模型过程中,遇到算子不支持的问题。报错如下: [ERROR] Due to the unsupported operators, the conversion is aborted.
解决方案:使用 paddlepaddle 2.3.1 + paddle2onnx 0.9.8 或者 paddlepaddle 2.4.0(paddlepaddle_develop) + paddle2onnx 1.0.0 搭配将动态模型转换成静态模型,再将静态模型转换成 onnx 模型即可。 参考
ps: paddle 静态图模型(*.pdmodel)和 onnx 模型(*.onnx)可以拖动到 https://netron.app/ 进行可视化
*.pdmodel
*.onnx
2、【server】启动 server 服务的时候有报错: got an unexpected keyword argument 'debug' 解决方案:目前最新的paddlespeech 代码已经解决该问题。若使用旧版本的代码需要把uvicorn 的版本降级到 0.18.3 原因: uvicorn 升级了版本去掉了 debug 参数,我们之前启动服务的代码中使用了这个参数。 参考
The text was updated successfully, but these errors were encountered:
No branches or pull requests
从 2022.10.24日起,把遇到的问题汇总在这里,以便让开发者能够较快的找到解决方案。后期如果问题增多的再进行分类。
1、【paddle2onnx】paddle模型转onnx模型过程中,遇到算子不支持的问题。报错如下:
[ERROR] Due to the unsupported operators, the conversion is aborted.
解决方案:使用 paddlepaddle 2.3.1 + paddle2onnx 0.9.8 或者 paddlepaddle 2.4.0(paddlepaddle_develop) + paddle2onnx 1.0.0 搭配将动态模型转换成静态模型,再将静态模型转换成 onnx 模型即可。
参考
ps: paddle 静态图模型(
*.pdmodel
)和 onnx 模型(*.onnx
)可以拖动到 https://netron.app/ 进行可视化2、【server】启动 server 服务的时候有报错:
got an unexpected keyword argument 'debug'
解决方案:目前最新的paddlespeech 代码已经解决该问题。若使用旧版本的代码需要把uvicorn 的版本降级到 0.18.3
原因: uvicorn 升级了版本去掉了 debug 参数,我们之前启动服务的代码中使用了这个参数。
参考
FAQ
安装相关
中英文混合 TTS
TTS 端上部署相关
TTS 其他常见问题
ASR 常见问题
更多问题汇总
The text was updated successfully, but these errors were encountered: