Skip to content

Commit be468a8

Browse files
fix: rename failed jobs log file extension from .txt to .out
1 parent f1a2a55 commit be468a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cellmap_segmentation_challenge/utils/batch_eval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def eval_batch(csv_path, cluster=False, cmd_template=CMD_TEMPLATE, num_cpus=48):
147147
print(f" - {job}")
148148
# Print to timestamped file
149149
timestamp = time.strftime("%Y%m%d_%H%M%S")
150-
fail_log = f"failed_jobs_{timestamp}.txt"
150+
fail_log = f"failed_jobs_{timestamp}.out"
151151
with open(fail_log, "w") as f:
152152
for job in failed:
153153
f.write(f"{job}\n")

0 commit comments

Comments
 (0)