danielz02
commited on
Commit
•
4b0c310
1
Parent(s):
943f952
Change leaderboard description texts
Browse files- src/display/about.py +9 -3
src/display/about.py
CHANGED
@@ -19,9 +19,9 @@ class Tasks(Enum):
|
|
19 |
TITLE = """<h1 align="center" id="space-title">Demo leaderboard</h1>"""
|
20 |
|
21 |
# What does your leaderboard evaluate?
|
22 |
-
INTRODUCTION_TEXT = """
|
23 |
-
|
24 |
-
"""
|
25 |
|
26 |
# Which evaluations are you running? how can people reproduce what you have?
|
27 |
LLM_BENCHMARKS_TEXT = f"""
|
@@ -64,4 +64,10 @@ If everything is done, check you can launch the EleutherAIHarness on your model
|
|
64 |
|
65 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
66 |
CITATION_BUTTON_TEXT = r"""
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
"""
|
|
|
19 |
TITLE = """<h1 align="center" id="space-title">Demo leaderboard</h1>"""
|
20 |
|
21 |
# What does your leaderboard evaluate?
|
22 |
+
INTRODUCTION_TEXT = """This research endeavor is designed to help researchers better understand the capabilities,
|
23 |
+
limitations, and potential risks associated with deploying these state-of-the-art Large Language Models (LLMs). See
|
24 |
+
our paper for details."""
|
25 |
|
26 |
# Which evaluations are you running? how can people reproduce what you have?
|
27 |
LLM_BENCHMARKS_TEXT = f"""
|
|
|
64 |
|
65 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
66 |
CITATION_BUTTON_TEXT = r"""
|
67 |
+
@article{wang2023decodingtrust,
|
68 |
+
title={DecodingTrust: A Comprehensive Assessment of Trustworthiness in GPT Models},
|
69 |
+
author={Wang, Boxin and Chen, Weixin and Pei, Hengzhi and Xie, Chulin and Kang, Mintong and Zhang, Chenhui and Xu, Chejian and Xiong, Zidi and Dutta, Ritik and Schaeffer, Rylan and others},
|
70 |
+
booktitle={Thirty-seventh Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
|
71 |
+
year={2023}
|
72 |
+
}
|
73 |
"""
|