Update app.py
Browse files
app.py
CHANGED
@@ -466,13 +466,12 @@ with gr.Blocks(css=css_tech_theme) as demo:
|
|
466 |
# handle_submission,
|
467 |
# inputs=[file_input, model_name_input],
|
468 |
# outputs=[eval_status],)
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
"""):
|
476 |
with gr.Row(elem_id="submission-fields"):
|
477 |
file_input = gr.File(label="Upload Prediction CSV", file_types=[".csv"], interactive=True)
|
478 |
model_name_input = gr.Textbox(label="Model Name", placeholder="Enter your model name")
|
|
|
466 |
# handle_submission,
|
467 |
# inputs=[file_input, model_name_input],
|
468 |
# outputs=[eval_status],)
|
469 |
+
with gr.TabItem("📤 Submission"):
|
470 |
+
with gr.Markdown("""
|
471 |
+
<div class="submission-section">
|
472 |
+
<h2>Submit Your Predictions</h2>
|
473 |
+
<p>Upload your prediction file and provide your model name to evaluate and submit to the leaderboard.</p> </div>"""):
|
474 |
+
|
|
|
475 |
with gr.Row(elem_id="submission-fields"):
|
476 |
file_input = gr.File(label="Upload Prediction CSV", file_types=[".csv"], interactive=True)
|
477 |
model_name_input = gr.Textbox(label="Model Name", placeholder="Enter your model name")
|