Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,9 @@ The CompassAcademic currently focuses on the comprehensive reasoning abilities o
|
|
57 |
def create_interface():
|
58 |
model_info, results = findfile()
|
59 |
|
60 |
-
with gr.Blocks(
|
|
|
|
|
61 |
with gr.Tabs(elem_classes='tab-buttons') as tabs:
|
62 |
with gr.TabItem('Results', elem_id='main', id=0):
|
63 |
# math_main_tab(results)
|
@@ -68,6 +70,7 @@ def create_interface():
|
|
68 |
|
69 |
return demo
|
70 |
|
|
|
71 |
# model_info, results = findfile()
|
72 |
# breakpoint()
|
73 |
|
|
|
57 |
def create_interface():
|
58 |
model_info, results = findfile()
|
59 |
|
60 |
+
with gr.Blocks() as demo:
|
61 |
+
title_comp = gr.Markdown(Initial_title)
|
62 |
+
gr.Markdown(MAIN_LEADERBOARD_DESCRIPTION)
|
63 |
with gr.Tabs(elem_classes='tab-buttons') as tabs:
|
64 |
with gr.TabItem('Results', elem_id='main', id=0):
|
65 |
# math_main_tab(results)
|
|
|
70 |
|
71 |
return demo
|
72 |
|
73 |
+
|
74 |
# model_info, results = findfile()
|
75 |
# breakpoint()
|
76 |
|