陈俊杰
commited on
Commit
·
3530de6
1
Parent(s):
4b6b54f
fontSize
Browse files
app.py
CHANGED
@@ -98,6 +98,16 @@ import pandas as pd
|
|
98 |
# st.markdown("""Task: Non-Factoid QA; Dataset: NF_CATS""", unsafe_allow_html=True)
|
99 |
# st.dataframe(df4, use_container_width=True)
|
100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
# 设置页面标题和大标题
|
102 |
st.set_page_config(page_title="AEOLLM", page_icon="👋")
|
103 |
st.title("NTCIR-18 Automatic Evaluation of LLMs (AEOLLM) Task")
|
|
|
98 |
# st.markdown("""Task: Non-Factoid QA; Dataset: NF_CATS""", unsafe_allow_html=True)
|
99 |
# st.dataframe(df4, use_container_width=True)
|
100 |
|
101 |
+
st.markdown("""
|
102 |
+
<style>
|
103 |
+
/* 统一调整所有 Markdown 文本的字体大小 */
|
104 |
+
.markdown-text-container {
|
105 |
+
font-size: 20px;
|
106 |
+
font-family: 'Times New Roman', serif;
|
107 |
+
}
|
108 |
+
</style>
|
109 |
+
""", unsafe_allow_html=True)
|
110 |
+
|
111 |
# 设置页面标题和大标题
|
112 |
st.set_page_config(page_title="AEOLLM", page_icon="👋")
|
113 |
st.title("NTCIR-18 Automatic Evaluation of LLMs (AEOLLM) Task")
|