This commit is contained in:
jario 2024-01-17 11:35:41 +08:00
parent 5108de8df4
commit 334c2055d9
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,8 @@ import argparse
root_url = "https://download.amovlab.com/model/SpireCV-models/" root_url = "https://download.amovlab.com/model/SpireCV-models/"
model_list_url = root_url + "model-list.txt" model_list_url = root_url + "model-list.txt"
root_path = "/home/amov/SpireCV/models" root_path = os.path.expanduser("~") + "/SpireCV/models"
print("MODEL PATH:", root_path)
list_file = os.path.join(root_path, "model-list.txt") list_file = os.path.join(root_path, "model-list.txt")