SondosMB commited on
Commit
b07af2e
Β·
verified Β·
1 Parent(s): 2fe87fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -17
app.py CHANGED
@@ -983,25 +983,25 @@ with gr.Blocks(css=css_tech_theme) as demo:
983
  eval_status = gr.Textbox(label="πŸ› οΈ Evaluation Status", interactive=False,scale=1,min_width=1200)
984
 
985
 
986
- with gr.TabItem("πŸ“€ Submission-Pro"):
987
- gr.Markdown("""
988
- <div class="submission-section" style="border: 3px solid #6a1b9a; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(106, 27, 154, 0.2);">
989
- <h2 style="color: #6a1b9a; text-align: center;">Submit Your Predictions</h2>
990
- <p style="font-size: 1.2em; color: #333; text-align: center;">Upload your prediction file and provide your model name to evaluate and optionally submit your results to the leaderboard.</p>
991
- </div>
992
- """)
993
- with gr.Row(elem_id="submission-fields"):
994
- file_input = gr.File(label="πŸ“‚ Upload Prediction CSV for Mobile-MMLU-Pro", file_types=[".csv"], interactive=True,scale=1, min_width=12000)
995
- model_name_input = gr.Textbox(label="🏷️ Model Name", placeholder="Enter your model name",scale=1, min_width=800)
996
- Team_name_input = gr.Textbox(label="🏷️ Team Name", placeholder="Enter your Team name",scale=1, min_width=800)
997
 
998
- with gr.Row(elem_id="submission-results"):
999
- overall_accuracy_display = gr.Number(label="πŸ“Š Overall Accuracy (%)", interactive=False,scale=1,min_width=1200)
1000
 
1001
- with gr.Row(elem_id="submission-buttons"):
1002
- eval_button_pro = gr.Button("πŸ“ˆ Evaluate",scale=1,min_width=1200)
1003
- submit_button_pro = gr.Button("πŸ“€ Prove and Submit to Leaderboard", elem_id="evaluation-status", visible=False,scale=1,min_width=1200)
1004
- eval_status = gr.Textbox(label="πŸ› οΈ Evaluation Status", interactive=False,scale=1,min_width=1200)
1005
 
1006
 
1007
 
 
983
  eval_status = gr.Textbox(label="πŸ› οΈ Evaluation Status", interactive=False,scale=1,min_width=1200)
984
 
985
 
986
+ # with gr.TabItem("πŸ“€ Submission-Pro"):
987
+ # gr.Markdown("""
988
+ # <div class="submission-section" style="border: 3px solid #6a1b9a; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(106, 27, 154, 0.2);">
989
+ # <h2 style="color: #6a1b9a; text-align: center;">Submit Your Predictions</h2>
990
+ # <p style="font-size: 1.2em; color: #333; text-align: center;">Upload your prediction file and provide your model name to evaluate and optionally submit your results to the leaderboard.</p>
991
+ # </div>
992
+ # """)
993
+ # with gr.Row(elem_id="submission-fields"):
994
+ # file_input = gr.File(label="πŸ“‚ Upload Prediction CSV for Mobile-MMLU-Pro", file_types=[".csv"], interactive=True,scale=1, min_width=12000)
995
+ # model_name_input = gr.Textbox(label="🏷️ Model Name", placeholder="Enter your model name",scale=1, min_width=800)
996
+ # Team_name_input = gr.Textbox(label="🏷️ Team Name", placeholder="Enter your Team name",scale=1, min_width=800)
997
 
998
+ # with gr.Row(elem_id="submission-results"):
999
+ # overall_accuracy_display = gr.Number(label="πŸ“Š Overall Accuracy (%)", interactive=False,scale=1,min_width=1200)
1000
 
1001
+ # with gr.Row(elem_id="submission-buttons"):
1002
+ # eval_button_pro = gr.Button("πŸ“ˆ Evaluate",scale=1,min_width=1200)
1003
+ # submit_button_pro = gr.Button("πŸ“€ Prove and Submit to Leaderboard", elem_id="evaluation-status", visible=False,scale=1,min_width=1200)
1004
+ # eval_status = gr.Textbox(label="πŸ› οΈ Evaluation Status", interactive=False,scale=1,min_width=1200)
1005
 
1006
 
1007