Skip to content

Commit

Permalink
Add rmvpe to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
kalomaze authored Aug 3, 2023
1 parent bf0ffdb commit 7c46f9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ basev1: ## Download version 1 pre-trained models (Do only once after cloning the
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP2-人声vocals+非人声instrumentals.pth -d uvr5_weights -o HP2-人声vocals+非人声instrumentals.pth
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP5-主旋律人声vocals+其他instrumentals.pth -d uvr5_weights -o HP5-主旋律人声vocals+其他instrumentals.pth
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt -d ./ -o hubert_base.pt
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt -d ./ -o rmvpe.pt

basev2: ## Download version 2 pre-trained models (Do only once after cloning the fork)
mkdir -p pretrained_v2 uvr5_weights
Expand All @@ -51,6 +52,7 @@ basev2: ## Download version 2 pre-trained models (Do only once after cloning the
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP2-人声vocals+非人声instrumentals.pth -d uvr5_weights -o HP2-人声vocals+非人声instrumentals.pth
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP5-主旋律人声vocals+其他instrumentals.pth -d uvr5_weights -o HP5-主旋律人声vocals+其他instrumentals.pth
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt -d ./ -o hubert_base.pt
aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt -d ./ -o rmvpe.pt

run-ui: ## Run the python GUI
python infer-web.py --paperspace --pycmd python
Expand All @@ -60,4 +62,4 @@ run-cli: ## Run the python CLI

tensorboard: ## Start the tensorboard (Run on separate terminal)
echo https://tensorboard-$$(hostname).clg07azjl.paperspacegradient.com
tensorboard --logdir logs --bind_all
tensorboard --logdir logs --bind_all

0 comments on commit 7c46f9c

Please sign in to comment.