Commit
·
1d9823e
1
Parent(s):
3272f01
invisible Upload
Browse files- gradio_interface.py +1 -1
gradio_interface.py
CHANGED
|
@@ -122,7 +122,7 @@ with gr.Blocks(title="ImageCLEFmed-MEDVQA-GI-2025 Submissions") as demo:
|
|
| 122 |
title="ImageCLEFmed-MEDVQA-GI-2025 Submissions",
|
| 123 |
description="Filter and search submissions by task type and user."
|
| 124 |
)
|
| 125 |
-
with gr.Tab("Upload Submission", visible=
|
| 126 |
file_input = gr.File(label="Upload JSON", file_types=["json"])
|
| 127 |
upload_output = gr.Textbox(label="Result") # Add this line
|
| 128 |
file_input.upload(add_submission, file_input,
|
|
|
|
| 122 |
title="ImageCLEFmed-MEDVQA-GI-2025 Submissions",
|
| 123 |
description="Filter and search submissions by task type and user."
|
| 124 |
)
|
| 125 |
+
with gr.Tab("Upload Submission", visible=False):
|
| 126 |
file_input = gr.File(label="Upload JSON", file_types=["json"])
|
| 127 |
upload_output = gr.Textbox(label="Result") # Add this line
|
| 128 |
file_input.upload(add_submission, file_input,
|