Next
commited on
Update download_files.py
Browse files- download_files.py +4 -4
download_files.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
import subprocess, os
|
2 |
-
assets_folder = "./assets/"
|
3 |
if not os.path.exists(assets_folder):
|
4 |
os.makedirs(assets_folder)
|
5 |
files = {
|
6 |
-
"rmvpe/rmvpe.pt":"https://huggingface.co/
|
7 |
-
"hubert/hubert_base.pt":"https://huggingface.co/
|
8 |
-
}
|
9 |
for file, link in files.items():
|
10 |
file_path = os.path.join(assets_folder, file)
|
11 |
if not os.path.exists(file_path):
|
|
|
1 |
import subprocess, os
|
2 |
+
assets_folder = "./rvc/assets/"
|
3 |
if not os.path.exists(assets_folder):
|
4 |
os.makedirs(assets_folder)
|
5 |
files = {
|
6 |
+
"rmvpe/rmvpe.pt":"https://huggingface.co/kindahex/module_rvc/resolve/main/rmvpe.pt",
|
7 |
+
"hubert/hubert_base.pt":"https://huggingface.co/kindahex/module_rvc/resolve/main/hubert_base.pt"
|
8 |
+
}
|
9 |
for file, link in files.items():
|
10 |
file_path = os.path.join(assets_folder, file)
|
11 |
if not os.path.exists(file_path):
|