diff --git a/README.md b/README.md index 60b23ad..1969b02 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,5 @@ 可在项目文件夹 `/enginex` 下查看具体可支持模型文件的运行方式。 支持模型列表: -- AI-ModelScope/F5-TTS \ No newline at end of file +- AI-ModelScope/F5-TTS +- microsoft/speecht5_tts \ No newline at end of file diff --git a/enginex/speecht5_tts.md b/enginex/speecht5_tts.md new file mode 100644 index 0000000..a9f825b --- /dev/null +++ b/enginex/speecht5_tts.md @@ -0,0 +1,10 @@ +# 运行方式 + +```python +docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-centos7.6-dtk24.04-py310 + +docker run -it --network=host --ipc=host --name=your_container_name --shm-size=32G --device=/dev/kfd --device=/dev/mkfd --device=/dev/dri -v /opt/hyhal:/opt/hyhal:ro -v /path/your_code_data/:/path/your_code_data/ --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined image.sourcefind.cn:5000/dcu/admin/base/pytorch:2.1.0-centos7.6-dtk24.04-py310 /bin/bash + +cd /path/your_code_data/ +pip3 install -r requirements.txt +```