logo
0
0
WeChat Login

#git安装大文件,上传大文件 git lfs install git lfs track "*.pth" git add .gitattributes git add models/your_model.pth git commit -m "Add large model file with Git LFS" git push origin main

#下载大模型文件 pip install huggingface_hub

export HF_ENDPOINT=https://hf-mirror.com

huggingface-cli download lj1995/GPT-SoVITS
--repo-type=model
--revision=main
--local-dir=./GPT-SoVITS

huggingface-cli download lj1995/VoiceConversionWebUI
--repo-type=model
--revision=main
--include="uvr5_weights/**"
--local-dir=./uvr5_weights

#打开webui cd /workspace/index-tts && pip install -e ".[webui]" --no-build-isolation && python webui.py cd /workspace/index-tts && python webui.py

#下载子项目 git subtree add --prefix=index-tts https://github.com/index-tts/index-tts.git main git subtree pull --prefix=index-tts https://github.com/index-tts/index-tts.git main --squash

复制asr大模型 cp -r /workspace/FunASR/* /workspace/GPT-SoVITS/tools/asr/models cp -r /workspace/faster-whisper-large-v3 /workspace/GPT-SoVITS/tools/asr/models

About

No description, topics, or website provided.
Language
Python91.2%
Markdown2.6%
Cuda2.3%
License1.8%
Others2.1%