陈俊杰
commited on
Commit
•
ed0637e
1
Parent(s):
3530de6
fontSize
Browse files
app.py
CHANGED
@@ -98,16 +98,6 @@ 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 |
-
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")
|
@@ -130,6 +120,16 @@ with st.sidebar:
|
|
130 |
}
|
131 |
)
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
# 根据选择的页面展示不同的内容
|
134 |
if page == "Introduction":
|
135 |
st.header("Introduction")
|
|
|
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")
|
|
|
120 |
}
|
121 |
)
|
122 |
|
123 |
+
st.markdown("""
|
124 |
+
<style>
|
125 |
+
/* 统一调整所有 Markdown 文本的字体大小 */
|
126 |
+
.markdown-text-container {
|
127 |
+
font-size: 20px;
|
128 |
+
font-family: 'Times New Roman', serif;
|
129 |
+
}
|
130 |
+
</style>
|
131 |
+
""", unsafe_allow_html=True)
|
132 |
+
|
133 |
# 根据选择的页面展示不同的内容
|
134 |
if page == "Introduction":
|
135 |
st.header("Introduction")
|