update
Browse files
app.py
CHANGED
@@ -61,7 +61,11 @@ st.set_page_config(
|
|
61 |
|
62 |
#------------------------
|
63 |
if not os.path.exists(base_download_path):
|
64 |
-
|
|
|
|
|
|
|
|
|
65 |
|
66 |
if HuggingFace is False:
|
67 |
model_count = int(os.getenv("model_count"))
|
|
|
61 |
|
62 |
#------------------------
|
63 |
if not os.path.exists(base_download_path):
|
64 |
+
try:
|
65 |
+
os.makedirs(base_download_path)
|
66 |
+
except:
|
67 |
+
print("folder exists", base_download_path)
|
68 |
+
pass
|
69 |
|
70 |
if HuggingFace is False:
|
71 |
model_count = int(os.getenv("model_count"))
|