[host]
Browse files
app.py
CHANGED
@@ -69,10 +69,6 @@ def create_interface():
|
|
69 |
df.sort_values(by='Test Acc', ascending=False),
|
70 |
label="Leaderboard Results"
|
71 |
)
|
72 |
-
|
73 |
-
with gr.Column():
|
74 |
-
# Display the visualization
|
75 |
-
gr.Plot(create_accuracy_chart(df))
|
76 |
|
77 |
with gr.Row():
|
78 |
# Add dropdown for selecting a specific solution for more details
|
@@ -83,6 +79,11 @@ def create_interface():
|
|
83 |
|
84 |
# Display area for solution details
|
85 |
solution_details = gr.Markdown()
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
# Update solution details when dropdown changes
|
88 |
solution_dropdown.change(
|
|
|
69 |
df.sort_values(by='Test Acc', ascending=False),
|
70 |
label="Leaderboard Results"
|
71 |
)
|
|
|
|
|
|
|
|
|
72 |
|
73 |
with gr.Row():
|
74 |
# Add dropdown for selecting a specific solution for more details
|
|
|
79 |
|
80 |
# Display area for solution details
|
81 |
solution_details = gr.Markdown()
|
82 |
+
|
83 |
+
with gr.Row():
|
84 |
+
with gr.Column():
|
85 |
+
# Display the visualization
|
86 |
+
gr.Plot(create_accuracy_chart(df))
|
87 |
|
88 |
# Update solution details when dropdown changes
|
89 |
solution_dropdown.change(
|