Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
t0-0
commited on
Commit
·
e8652cf
1
Parent(s):
87ab411
Change output file name
Browse files- src/submission/submit.py +1 -1
src/submission/submit.py
CHANGED
@@ -88,7 +88,7 @@ def add_new_eval(
|
|
88 |
print("Creating eval file")
|
89 |
OUT_DIR = EVAL_REQUESTS_PATH / user_or_org
|
90 |
OUT_DIR.mkdir(parents=True, exist_ok=True)
|
91 |
-
out_file_name = f"{model_name}
|
92 |
out_path = OUT_DIR / out_file_name
|
93 |
|
94 |
with out_path.open("w") as f:
|
|
|
88 |
print("Creating eval file")
|
89 |
OUT_DIR = EVAL_REQUESTS_PATH / user_or_org
|
90 |
OUT_DIR.mkdir(parents=True, exist_ok=True)
|
91 |
+
out_file_name = f"{model_name}_{current_time.replace(':','-')}.json"
|
92 |
out_path = OUT_DIR / out_file_name
|
93 |
|
94 |
with out_path.open("w") as f:
|