操作系统 (Linux/macOS/Windows):huggingface space gradio
部署方式 (Docker/windows快速部署包/自己搭的环境):虚拟环境
Python 版本 (如果是部署包可不填):3.10.11
代码版本/部署包版本: 0.67
问题描述
1.config.py文件中预设的文件路径与实际预留的路径不符:
hubert_soft_0d54a1f4: str = "hubert_soft/hubert-soft-0d54a1f4.pt"
# w2v2-vits: .npy file or folder are alvailable
dimensional_emotion_npy: Union[str, List[str]] = "dimensional_emotion_npy"
# w2v2-vits: Need to have both `models.onnx` and `models.yaml` files in the same path.
dimensional_emotion_model: str = "dimensional_emotion_model/models.yaml"
应为:
hubert_soft_0d54a1f4: str = "models/hubert-soft-0d54a1f4.pt"
# w2v2-vits: .npy file or folder are alvailable
dimensional_emotion_npy: Union[str, List[str]] = "emotional/dimensional_emotion_npy"
# w2v2-vits: Need to have both `models.onnx` and `models.yaml` files in the same path.
dimensional_emotion_model: str = "emotional/dimensional_emotion_model/models.yaml"
ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29' not found (required by /home/user/.local/lib/python3.10/site-packages/opencc/clib/opencc_clib.cpython-310-x86_64-linux-gnu.so)
运行环境
问题描述
1.
config.py
文件中预设的文件路径与实际预留的路径不符:应为:
2.您
huggingface space
示例中的第40号speaker : ルイズ,也就是位于models/louise文件夹的模型会报错:问题复现步骤