add note
Browse files
app.py
CHANGED
|
@@ -331,6 +331,13 @@ def build_leaderboard_tab(elo_results_file, leaderboard_table_file, show_plot=Fa
|
|
| 331 |
else:
|
| 332 |
pass
|
| 333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 334 |
leader_component_values[:] = [default_md, p1, p2, p3, p4]
|
| 335 |
|
| 336 |
if show_plot:
|
|
|
|
| 331 |
else:
|
| 332 |
pass
|
| 333 |
|
| 334 |
+
gr.Markdown(
|
| 335 |
+
f"""Note: we take the 95% confidence interval into account when determining a model's ranking.
|
| 336 |
+
A model is ranked higher only if its lower bound of model score is higher than the upper bound of the other model's score.
|
| 337 |
+
""",
|
| 338 |
+
elem_id="leaderboard_markdown"
|
| 339 |
+
)
|
| 340 |
+
|
| 341 |
leader_component_values[:] = [default_md, p1, p2, p3, p4]
|
| 342 |
|
| 343 |
if show_plot:
|