Spaces:
Paused
Paused
Update folder_paths.py
Browse files- folder_paths.py +4 -4
folder_paths.py
CHANGED
@@ -46,10 +46,10 @@ folder_names_and_paths["photomaker"] = ([os.path.join(models_dir, "photomaker")]
|
|
46 |
|
47 |
folder_names_and_paths["classifiers"] = ([os.path.join(models_dir, "classifiers")], {""})
|
48 |
|
49 |
-
output_directory = os.path.join("data/", "output")
|
50 |
-
temp_directory = os.path.join("data/", "temp")
|
51 |
-
input_directory = os.path.join("data/", "input")
|
52 |
-
user_directory = os.path.join("data/", "user")
|
53 |
|
54 |
filename_list_cache: dict[str, tuple[list[str], dict[str, float], float]] = {}
|
55 |
|
|
|
46 |
|
47 |
folder_names_and_paths["classifiers"] = ([os.path.join(models_dir, "classifiers")], {""})
|
48 |
|
49 |
+
output_directory = os.path.join("/data/", "output")
|
50 |
+
temp_directory = os.path.join("/data/", "temp")
|
51 |
+
input_directory = os.path.join("/data/", "input")
|
52 |
+
user_directory = os.path.join("/data/", "user")
|
53 |
|
54 |
filename_list_cache: dict[str, tuple[list[str], dict[str, float], float]] = {}
|
55 |
|