陈俊杰 commited on
Commit
5c4f7bb
·
1 Parent(s): 4db5d9d
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,7 +6,7 @@ import pytz
6
  import time
7
 
8
  # 设置页面标题和大标题
9
- st.set_page_config(page_title="AEOLLM", page_icon="👋")
10
  st.title("NTCIR-18 Automatic Evaluation of LLMs (AEOLLM) Task")
11
 
12
  # 在侧边栏创建导航菜单
@@ -303,7 +303,7 @@ This leaderboard is used to show the performance of the <strong>automatic evalua
303
  df = pd.DataFrame(df)
304
  for col in df.select_dtypes(include=['float64', 'int64']).columns:
305
  df[col] = df[col].apply(lambda x: f"{x:.4f}")
306
- st.dataframe(df)
307
 
308
  st.markdown("A baseline example can be found in the [baseline_example](https://huggingface.co/spaces/THUIR/AEOLLM/tree/main/baseline_example) folder.")
309
  # 获取北京时间
 
6
  import time
7
 
8
  # 设置页面标题和大标题
9
+ st.set_page_config(page_title="AEOLLM", page_icon="👋", layout="wide")
10
  st.title("NTCIR-18 Automatic Evaluation of LLMs (AEOLLM) Task")
11
 
12
  # 在侧边栏创建导航菜单
 
303
  df = pd.DataFrame(df)
304
  for col in df.select_dtypes(include=['float64', 'int64']).columns:
305
  df[col] = df[col].apply(lambda x: f"{x:.4f}")
306
+ st.dataframe(df,width=1000)
307
 
308
  st.markdown("A baseline example can be found in the [baseline_example](https://huggingface.co/spaces/THUIR/AEOLLM/tree/main/baseline_example) folder.")
309
  # 获取北京时间