andeyibiao

Results 1 comments of andeyibiao

4.2.4 选 rmvpe 后报错 表现: 训练模型/推理时选 rmvpe 后报错,类似 INFO:infer.modules.vc.pipeline:Loading rmvpe model,assets/rmvpe/rmvpe.pt DEBUG:httpcore.http11:receive_response_headers.failed exception=ReadTimeout(TimeoutError()) 该问题是加载rmvpe.pt模型时间超过了gradio中使用httpx的默认5秒超时时间导致的问题,可以参考 https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/issues/2394#issuecomment-2617807357 我的最终解决办法是修改 /opt/miniconda3/envs/RVC/lib/python3.10/site-packages/httpx/_config.py 中的DEFAULT_TIMEOUT_CONFIG = Timeout(timeout=5.0) 把5秒改长即可