Spaces:
Running
Running
Removed unnecessary assignment of headings
Browse files
app.py
CHANGED
|
@@ -735,11 +735,10 @@ def gradio_app():
|
|
| 735 |
elem_classes="leaderboard-table-legend",
|
| 736 |
)
|
| 737 |
|
| 738 |
-
|
| 739 |
-
|
| 740 |
-
|
| 741 |
-
|
| 742 |
-
)
|
| 743 |
|
| 744 |
with gr.Row():
|
| 745 |
leaderboard_scatter_plot = gr.HTML(
|
|
@@ -749,11 +748,10 @@ def gradio_app():
|
|
| 749 |
|
| 750 |
gr.Markdown(LEADERBOARD_TAB_BELLOW_SCATTER_PLOT_MARKDOWN)
|
| 751 |
|
| 752 |
-
|
| 753 |
-
|
| 754 |
-
|
| 755 |
-
|
| 756 |
-
)
|
| 757 |
|
| 758 |
with gr.Row():
|
| 759 |
leaderboard_heatmap = gr.HTML(
|
|
|
|
| 735 |
elem_classes="leaderboard-table-legend",
|
| 736 |
)
|
| 737 |
|
| 738 |
+
gr.Markdown(
|
| 739 |
+
value="### Scatter plot",
|
| 740 |
+
visible=True,
|
| 741 |
+
)
|
|
|
|
| 742 |
|
| 743 |
with gr.Row():
|
| 744 |
leaderboard_scatter_plot = gr.HTML(
|
|
|
|
| 748 |
|
| 749 |
gr.Markdown(LEADERBOARD_TAB_BELLOW_SCATTER_PLOT_MARKDOWN)
|
| 750 |
|
| 751 |
+
gr.Markdown(
|
| 752 |
+
value="### Heatmap",
|
| 753 |
+
visible=True,
|
| 754 |
+
)
|
|
|
|
| 755 |
|
| 756 |
with gr.Row():
|
| 757 |
leaderboard_heatmap = gr.HTML(
|