陈俊杰
commited on
Commit
•
000fbcd
1
Parent(s):
f161115
fontSize
Browse files
app.py
CHANGED
@@ -142,55 +142,51 @@ elif page == "Methodology":
|
|
142 |
st.header("Methodology")
|
143 |
st.image("asserts/method.svg", use_column_width=True)
|
144 |
st.markdown("""
|
145 |
-
<
|
146 |
-
|
147 |
-
|
148 |
-
<
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
<
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
<li class='main-text'>Last, we will collect evaluation results from participants and calculate consistency with manually annotated results. We will use Accuracy, Kendall’s tau and Spearman correlation coefficient as the evaluation metrics.</li>
|
181 |
-
</ol>
|
182 |
""",unsafe_allow_html=True)
|
183 |
|
184 |
elif page == "Datasets":
|
185 |
st.header("Datasets")
|
186 |
st.markdown("""
|
187 |
<p class='main-text'>A brief description of the specific dataset we used, along with the original download link, is provided below:</p>
|
188 |
-
<
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
<li class='main-text'><strong>Dialogue Generation (DG): <a href="https://huggingface.co/datasets/daily_dialog">DailyDialog</a></strong>: A high-quality dataset of 13k multi-turn dialogues. The language is human-written and less noisy.</li>
|
193 |
-
</ul>
|
194 |
<p class='main-text'>For your convenience, we have released <strong>the training set</strong> (with human-annotated results) and <strong>the test set</strong> (without human-annotated results) on <a href="https://huggingface.co/datasets/THUIR/AEOLLM">https://huggingface.co/datasets/THUIR/AEOLLM</a>, which you can easily download.</p>
|
195 |
""",unsafe_allow_html=True)
|
196 |
|
@@ -230,13 +226,11 @@ elif page == "Data and File format":
|
|
230 |
st.markdown("""
|
231 |
<p class='main-text'>We will be following a similar format as the ones used by most <strong>TREC submissions</strong>, which is repeated below. White space is used to separate columns. The width of the columns in the format is not important, but it is important to have exactly five columns per line with at least one space between the columns.</p>
|
232 |
<p class='main-text'><strong>taskId questionId answerId score rank</strong></p>
|
233 |
-
<
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
<li class='main-text'>the fifth column is rank (index the rank of the answer within all answers to the same question)</li>
|
239 |
-
</ol>
|
240 |
""",unsafe_allow_html=True)
|
241 |
elif page == "Submit":
|
242 |
st.header("Submit")
|
@@ -248,13 +242,11 @@ elif page == "LeaderBoard":
|
|
248 |
# # 描述
|
249 |
st.markdown("""
|
250 |
<div class='main-text'>
|
251 |
-
This leaderboard is used to show the performance of the <strong>automatic evaluation methods of LLMs</strong> submitted by the <strong>AEOLLM team</strong> on four tasks:
|
252 |
-
<
|
253 |
-
<
|
254 |
-
<
|
255 |
-
<
|
256 |
-
<li class='main-text'>Non-Factoid QA (NFQA)</li>
|
257 |
-
</ul>
|
258 |
</div>
|
259 |
""", unsafe_allow_html=True)
|
260 |
# 创建示例数据
|
|
|
142 |
st.header("Methodology")
|
143 |
st.image("asserts/method.svg", use_column_width=True)
|
144 |
st.markdown("""
|
145 |
+
<p class='main-text'>First, we choose four subtasks as shown in the table below:</p>
|
146 |
+
<table class='main-text'>
|
147 |
+
<thead>
|
148 |
+
<tr>
|
149 |
+
<th style="text-align: left">Task</th>
|
150 |
+
<th style="text-align: left">Description</th>
|
151 |
+
<th style="text-align: left">Dataset</th>
|
152 |
+
</tr>
|
153 |
+
</thead>
|
154 |
+
<tbody>
|
155 |
+
<tr>
|
156 |
+
<td style="text-align: left">Summary Generation (SG)</td>
|
157 |
+
<td style="text-align: left">write a summary for the specified text</td>
|
158 |
+
<td style="text-align: left">XSum: over 226k news articles</td>
|
159 |
+
</tr>
|
160 |
+
<tr>
|
161 |
+
<td style="text-align: left">Non-Factoid QA (NFQA)</td>
|
162 |
+
<td style="text-align: left">construct long-form answers to open-ended non-factoid questions</td>
|
163 |
+
<td style="text-align: left">NF_CATS: 12k non-factoid questions</td>
|
164 |
+
</tr>
|
165 |
+
<tr>
|
166 |
+
<td style="text-align: left">Text Expansion (TE)</td>
|
167 |
+
<td style="text-align: left">given a theme, participants need to generate stories related to the theme</td>
|
168 |
+
<td style="text-align: left">WritingPrompts: 303k story themes2</td>
|
169 |
+
</tr>
|
170 |
+
<tr>
|
171 |
+
<td style="text-align: left">Dialogue Generation (DG)</td>
|
172 |
+
<td style="text-align: left">generate human-like responses to numerous topics in daily conversation contexts</td>
|
173 |
+
<td style="text-align: left">DailyDialog: 13k daily conversation contexts</td>
|
174 |
+
</tr>
|
175 |
+
</tbody>
|
176 |
+
</table>
|
177 |
+
<p class='main-text'>Second, we choose a series of popular LLMs during the competition to generate answers.</p>
|
178 |
+
<p class='main-text'>Third, we manually annotate the answer sets for each question, which will be used as gold standards for evaluating the performance of different evaluation methods.</p>
|
179 |
+
<p class='main-text'>Last, we will collect evaluation results from participants and calculate consistency with manually annotated results. We will use Accuracy, Kendall’s tau and Spearman correlation coefficient as the evaluation metrics.</p>
|
|
|
|
|
180 |
""",unsafe_allow_html=True)
|
181 |
|
182 |
elif page == "Datasets":
|
183 |
st.header("Datasets")
|
184 |
st.markdown("""
|
185 |
<p class='main-text'>A brief description of the specific dataset we used, along with the original download link, is provided below:</p>
|
186 |
+
<p class='main-text'>1. <strong>Summary Generation (SG): <a href="https://huggingface.co/datasets/EdinburghNLP/xsum">Xsum</a></strong>: A real-world single document news summary dataset collected from online articles by the British Broadcasting Corporation (BBC) and contains over 220 thousand news documents.</p>
|
187 |
+
<p class='main-text'>2. <strong>Non-Factoid QA (NFQA): <a href="https://github.com/Lurunchik/NF-CATS">NF_CATS</a></strong>: A dataset contains examples of 12k natural questions divided into eight categories.</p>
|
188 |
+
<p class='main-text'>3. <strong>Text Expansion (TE): <a href="https://huggingface.co/datasets/euclaise/writingprompts">WritingPrompts</a></strong>: A large dataset of 300K human-written stories paired with writing prompts from an online forum.</p>
|
189 |
+
<p class='main-text'>4. <strong>Dialogue Generation (DG): <a href="https://huggingface.co/datasets/daily_dialog">DailyDialog</a></strong>: A high-quality dataset of 13k multi-turn dialogues. The language is human-written and less noisy.</p>
|
|
|
|
|
190 |
<p class='main-text'>For your convenience, we have released <strong>the training set</strong> (with human-annotated results) and <strong>the test set</strong> (without human-annotated results) on <a href="https://huggingface.co/datasets/THUIR/AEOLLM">https://huggingface.co/datasets/THUIR/AEOLLM</a>, which you can easily download.</p>
|
191 |
""",unsafe_allow_html=True)
|
192 |
|
|
|
226 |
st.markdown("""
|
227 |
<p class='main-text'>We will be following a similar format as the ones used by most <strong>TREC submissions</strong>, which is repeated below. White space is used to separate columns. The width of the columns in the format is not important, but it is important to have exactly five columns per line with at least one space between the columns.</p>
|
228 |
<p class='main-text'><strong>taskId questionId answerId score rank</strong></p>
|
229 |
+
<p class='main-text'>1. the first column is the taskeId (index different tasks)</p>
|
230 |
+
<p class='main-text'>2. the second column is questionId (index different questions in the same task)</p>
|
231 |
+
<p class='main-text'>3. the third column is answerId (index the answer provided by different LLMs to the same question)</p>
|
232 |
+
<p class='main-text'>4. the fourth column is score (index the score to the answer given by participants)</p>
|
233 |
+
<p class='main-text'>5. the fifth column is rank (index the rank of the answer within all answers to the same question)</p>
|
|
|
|
|
234 |
""",unsafe_allow_html=True)
|
235 |
elif page == "Submit":
|
236 |
st.header("Submit")
|
|
|
242 |
# # 描述
|
243 |
st.markdown("""
|
244 |
<div class='main-text'>
|
245 |
+
This leaderboard is used to show the performance of the <strong>automatic evaluation methods of LLMs</strong> submitted by the <strong>AEOLLM team</strong> on four tasks:
|
246 |
+
<p class='main-text'>1. Dialogue Generation (DG)</p>
|
247 |
+
<p class='main-text'>2. Text Expansion (TE)</p>
|
248 |
+
<p class='main-text'>3. Summary Generation (SG)</p>
|
249 |
+
<p class='main-text'>4. Non-Factoid QA (NFQA)</p>
|
|
|
|
|
250 |
</div>
|
251 |
""", unsafe_allow_html=True)
|
252 |
# 创建示例数据
|