Skip to content

Commit

Permalink
Fix Directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidalnt committed Feb 15, 2024
1 parent d1a2f4d commit 35e5d9f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion RVC_CLI.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"current_dir = os.getcwd()\n",
"\n",
"model_name = \"Darwin\" #@param {type:\"string\"}\n",
"model_folder = os.path.join(current_dir, f\"logs/models/{model_name}\")\n",
"model_folder = os.path.join(current_dir, f\"models/{model_name}\")\n",
"\n",
"if not os.path.exists(model_folder):\n",
" raise FileNotFoundError(f\"Model directory not found: {model_folder}\")\n",
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion rvc/lib/tools/model_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ def unzip_file(zip_path, zip_file_name):
model_zip = os.path.basename(zipfile_path)
model_name = format_title(model_zip.split(".zip")[0])
extract_folder_path = os.path.join(
"logs",
"models",
os.path.normpath(model_name),
)
Expand Down

0 comments on commit 35e5d9f

Please sign in to comment.