ahmedheakl commited on
Commit
6d0114c
1 Parent(s): 7337644

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -1
app.py CHANGED
@@ -44,6 +44,28 @@ with gr.Blocks() as demo:
44
  gr.Markdown("""
45
  This table shows the performance of different models across various tasks including OCR, chart understanding, video, medical imaging, and more.
46
  """)
47
- gr.Dataframe(value=df, label="CAMEL-Bench Model Performance", interactive=False)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
49
  demo.launch()
 
44
  gr.Markdown("""
45
  This table shows the performance of different models across various tasks including OCR, chart understanding, video, medical imaging, and more.
46
  """)
47
+ with gr.Tabs(elem_classes="tab-buttons") as tabs:
48
+ with gr.TabItem("🏅 LLM Leaderboard", elem_id="llm-benchmark-tab-table", id=0):
49
+ with gr.Row():
50
+ with gr.Column():
51
+ gr.Dataframe(value=df, label="CAMEL-Bench Model Performance", interactive=False)
52
+ with gr.Column():
53
+ # Add other components if needed
54
+
55
+ with gr.TabItem("📤 How to Submit", elem_id="submission-tab", id=1):
56
+ gr.Markdown("""
57
+ ## Submission Instructions
58
+
59
+ To contribute your model's results to the CAMEL-Bench leaderboard:
60
+
61
+ - **Via GitHub Pull Request**:
62
+ - Use [this evaluation script](https://github.com/mbzuai-oryx/Camel-Bench/blob/main/scripts/eval_qwen.py) to test your model and generate results.
63
+ - Create a pull request in the CAMEL-Bench GitHub repository with your results.
64
+
65
+ - **Via Email**:
66
+ - Send your results to **[email protected]**, and we’ll add them to the leaderboard for you.
67
+
68
+ **We look forward to seeing your contributions!**
69
+ """)
70
 
71
  demo.launch()