Open youyos opened 4 months ago
我觉得问题出在'²+'这里,'²+'对应的语言是zh,但这不是中文符号,导致G2P出错
复现了,带平方的单位是有处理的,单独的 ²
平方 ³
立方没有做处理。+
和 =
似乎也没有,@KamioRinn 佬解决一下。
暂时可以考虑先自己处理成 A x 平方加 B x 加 C 等于零
让它合成。
用最新代码试试
用新代码的中文跑,不需要中英混合处理公式
今天使用了新代码跑了,报错的问题确实已解决。
首先是更新了一下gradio
的版本,但是途中启动服务的时候还是有遇到这个错误
Traceback (most recent call last):
File "/mnt/workspace/GPT-SoVITS/webui.py", line 876, in <module>
app.queue(concurrency_count=511, max_size=1022).launch(
File "/home/pai/envs/sovits/lib/python3.9/site-packages/gradio/blocks.py", line 2117, in queue
raise DeprecationWarning(
DeprecationWarning: concurrency_count has been deprecated. Set the concurrency_limit directly on event listeners e.g. btn.click(fn, ..., concurrency_limit=10) or gr.Interface(concurrency_limit=10). If necessary, the total number of workers can be configured via `max_threads` in launch().
我是去掉concurrency_count
参数才成功的,app.queue(max_size=1022).launch
gradio版本不要动
gradio版本不要动
貌似有个警告,所以我就升级了,不过去掉concurrency_count参数也可以启动
需要转的文本:怎样求解一元二次方程AX²+BX+C=0的根。