陈俊杰
commited on
Commit
·
88915d0
1
Parent(s):
cadf633
cjj-leader
Browse files
app.py
CHANGED
@@ -198,7 +198,7 @@ elif page == "LeaderBoard":
|
|
198 |
# # 描述
|
199 |
st.markdown("""
|
200 |
<p class='main-text'>
|
201 |
-
NTCIR-18 Automatic Evaluation Methods of LLMs (AEOLLM) Leaderboard. To submit, refer to the "Submit" section in the left-hand navigation bar.🤗 Refer to other sections in the navigation bar for details on methodology, datasets, important dates, evaluation measures.
|
202 |
</p>
|
203 |
""", unsafe_allow_html=True)
|
204 |
df = {
|
@@ -308,7 +308,11 @@ NTCIR-18 Automatic Evaluation Methods of LLMs (AEOLLM) Leaderboard. To submit, r
|
|
308 |
df[col] = df[col].apply(lambda x: f"{x:.4f}")
|
309 |
st.dataframe(df,use_container_width=True)
|
310 |
|
311 |
-
st.markdown("
|
|
|
|
|
|
|
|
|
312 |
# 获取北京时间
|
313 |
time_placeholder = st.empty()
|
314 |
beijing_tz = pytz.timezone('Asia/Shanghai')
|
|
|
198 |
# # 描述
|
199 |
st.markdown("""
|
200 |
<p class='main-text'>
|
201 |
+
NTCIR-18 Automatic Evaluation Methods of LLMs (AEOLLM) Leaderboard. <br/>To submit, refer to the "Submit" section in the left-hand navigation bar.🤗 <br/>Refer to other sections in the navigation bar for details on methodology, datasets, important dates, and evaluation measures.
|
202 |
</p>
|
203 |
""", unsafe_allow_html=True)
|
204 |
df = {
|
|
|
308 |
df[col] = df[col].apply(lambda x: f"{x:.4f}")
|
309 |
st.dataframe(df,use_container_width=True)
|
310 |
|
311 |
+
st.markdown("""
|
312 |
+
The Leaderboard will be updated daily around 24:00 Beijing Time.
|
313 |
+
|
314 |
+
A baseline example can be found in the [baseline_example](https://huggingface.co/spaces/THUIR/AEOLLM/tree/main/baseline_example) folder.
|
315 |
+
""")
|
316 |
# 获取北京时间
|
317 |
time_placeholder = st.empty()
|
318 |
beijing_tz = pytz.timezone('Asia/Shanghai')
|