fix: add bar plot labels
Browse files
app.py
CHANGED
@@ -183,6 +183,8 @@ with gr.Blocks() as demo:
|
|
183 |
with gr.TabItem("📈 Graph", elem_id="od-benchmark-tab-table", id=2):
|
184 |
bar_plot = gr.BarPlot(
|
185 |
elem_id="leaderboard-bar-plot",
|
|
|
|
|
186 |
)
|
187 |
|
188 |
with gr.TabItem("ℹ️ Methods", elem_id="od-benchmark-tab-table", id=1):
|
|
|
183 |
with gr.TabItem("📈 Graph", elem_id="od-benchmark-tab-table", id=2):
|
184 |
bar_plot = gr.BarPlot(
|
185 |
elem_id="leaderboard-bar-plot",
|
186 |
+
x="Models",
|
187 |
+
y="Score",
|
188 |
)
|
189 |
|
190 |
with gr.TabItem("ℹ️ Methods", elem_id="od-benchmark-tab-table", id=1):
|