add citation
Browse files
app.py
CHANGED
@@ -373,7 +373,25 @@ You can find more discussions in this blog [post](https://lmsys.org/blog/2023-12
|
|
373 |
)
|
374 |
plot_4 = gr.Plot(p4, show_label=False)
|
375 |
|
376 |
-
gr.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
if show_plot:
|
379 |
return [md_1, plot_1, plot_2, plot_3, plot_4]
|
|
|
373 |
)
|
374 |
plot_4 = gr.Plot(p4, show_label=False)
|
375 |
|
376 |
+
with gr.Accordion(
|
377 |
+
"π Citation",
|
378 |
+
open=True,
|
379 |
+
):
|
380 |
+
citation_md = """
|
381 |
+
### Citation
|
382 |
+
Please cite the following paper if you find our leaderboard or dataset helpful.
|
383 |
+
```
|
384 |
+
@misc{chiang2024chatbot,
|
385 |
+
title={Chatbot Arena: An Open Platform for Evaluating LLMs by Human Preference},
|
386 |
+
author={Wei-Lin Chiang and Lianmin Zheng and Ying Sheng and Anastasios Nikolas Angelopoulos and Tianle Li and Dacheng Li and Hao Zhang and Banghua Zhu and Michael Jordan and Joseph E. Gonzalez and Ion Stoica},
|
387 |
+
year={2024},
|
388 |
+
eprint={2403.04132},
|
389 |
+
archivePrefix={arXiv},
|
390 |
+
primaryClass={cs.AI}
|
391 |
+
}
|
392 |
+
"""
|
393 |
+
gr.Markdown(citation_md, elem_id="leaderboard_markdown")
|
394 |
+
gr.Markdown(acknowledgment_md)
|
395 |
|
396 |
if show_plot:
|
397 |
return [md_1, plot_1, plot_2, plot_3, plot_4]
|