Update app.py
Browse files
app.py
CHANGED
@@ -310,10 +310,21 @@ def evaluate_predictions(prediction_file, model_name, add_to_leaderboard):
|
|
310 |
initialize_leaderboard_file()
|
311 |
|
312 |
with gr.Blocks() as demo:
|
313 |
-
gr.Markdown("
|
|
|
|
|
|
|
|
|
|
|
314 |
|
315 |
with gr.Tabs():
|
316 |
-
with gr.TabItem("
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
file_input = gr.File(label="Upload Prediction CSV")
|
318 |
model_name_input = gr.Textbox(label="Model Name", placeholder="Enter your model name")
|
319 |
add_to_leaderboard_checkbox = gr.Checkbox(label="Add to Leaderboard?", value=True)
|
|
|
310 |
initialize_leaderboard_file()
|
311 |
|
312 |
with gr.Blocks() as demo:
|
313 |
+
gr.Markdown("""
|
314 |
+
# Competition Title
|
315 |
+
### Welcome to the Competition Overview
|
316 |
+

|
317 |
+
Here you can submit your predictions, view the leaderboard, and track your performance!
|
318 |
+
""")
|
319 |
|
320 |
with gr.Tabs():
|
321 |
+
with gr.TabItem("📖 Overview"):
|
322 |
+
gr.Markdown("""
|
323 |
+
## Overview
|
324 |
+
This competition evaluates models on a benchmark dataset. Submit your predictions, see results instantly, and compare with others.
|
325 |
+
""")
|
326 |
+
|
327 |
+
with gr.TabItem("📤 Submission"):
|
328 |
file_input = gr.File(label="Upload Prediction CSV")
|
329 |
model_name_input = gr.Textbox(label="Model Name", placeholder="Enter your model name")
|
330 |
add_to_leaderboard_checkbox = gr.Checkbox(label="Add to Leaderboard?", value=True)
|