Update app.py
Browse files
app.py
CHANGED
@@ -2,15 +2,13 @@ from utils import *
|
|
2 |
|
3 |
global data_component
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
with block:
|
8 |
gr.Markdown(
|
9 |
LEADERBOARD_INTRODUCTION
|
10 |
)
|
11 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
12 |
# Table 1
|
13 |
-
with gr.TabItem("📊 MMLU-Pro", elem_id="qa-tab-table1", id=1):
|
14 |
with gr.Row():
|
15 |
with gr.Accordion("Citation", open=False):
|
16 |
citation_button = gr.Textbox(
|
|
|
2 |
|
3 |
global data_component
|
4 |
|
5 |
+
with gr.Blocks() as block:
|
|
|
|
|
6 |
gr.Markdown(
|
7 |
LEADERBOARD_INTRODUCTION
|
8 |
)
|
9 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
10 |
# Table 1
|
11 |
+
with gr.TabItem("📊 MMLU-Pro", elem_id="qa-tab-table1", id=1, fill_height=False):
|
12 |
with gr.Row():
|
13 |
with gr.Accordion("Citation", open=False):
|
14 |
citation_button = gr.Textbox(
|