smjain commited on
Commit
113f405
1 Parent(s): 9db8a10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -16,6 +16,7 @@ command = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/s
16
  command1 = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/modi.pth' -o ./weights/modi.pth"
17
  command2 = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/khujli.pth' -o ./weights/khujli.pth"
18
  command3 = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/kishorkumar.pth' -o ./weights/kishorkumar.pth"
 
19
 
20
 
21
 
@@ -26,6 +27,7 @@ os.system(command)
26
  os.system(command1)
27
  os.system(command2)
28
  os.system(command3)
 
29
  #os.system("aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/trips.pth -d ./weights -o trips.pth")
30
  os.system("aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/sail-rvc/yoimiya-jp/resolve/main/model.index -d ./weights/index -o yoimiya.index")
31
 
 
16
  command1 = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/modi.pth' -o ./weights/modi.pth"
17
  command2 = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/khujli.pth' -o ./weights/khujli.pth"
18
  command3 = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/kishorkumar.pth' -o ./weights/kishorkumar.pth"
19
+ command4 = f"curl -L -H 'Authorization: Bearer {token}' 'https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/mahendra.pth' -o ./weights/mahendra.pth"
20
 
21
 
22
 
 
27
  os.system(command1)
28
  os.system(command2)
29
  os.system(command3)
30
+ os.system(command4)
31
  #os.system("aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/spaces/smjain/Advanced-RVC-Inference/resolve/main/trips.pth -d ./weights -o trips.pth")
32
  os.system("aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/sail-rvc/yoimiya-jp/resolve/main/model.index -d ./weights/index -o yoimiya.index")
33