Commit
Β·
1882dfb
1
Parent(s):
85b290e
Add guidance message for submission command based on submission status
Browse files
medvqa/competitions/gi-2025/task_1.py
CHANGED
@@ -51,5 +51,7 @@ sp.run(["python", f"{snap_dir}/{submission_file}"],
|
|
51 |
print(
|
52 |
f"π The submission script ran successfully, the intermediate files are at {snap_dir}")
|
53 |
|
54 |
-
if MEDVQA_SUBMIT:
|
|
|
|
|
55 |
print("π Preparing for submission π")
|
|
|
51 |
print(
|
52 |
f"π The submission script ran successfully, the intermediate files are at {snap_dir}")
|
53 |
|
54 |
+
if not MEDVQA_SUBMIT:
|
55 |
+
print("\n You can now run medvqa validate_and_submit .... command to submit the task.")
|
56 |
+
else:
|
57 |
print("π Preparing for submission π")
|