陈俊杰 commited on
Commit
a4c2338
·
1 Parent(s): eaa1d85
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -73,19 +73,19 @@ tab1, tab2, tab3, tab4 = st.tabs(["DG", "TE", "SG", "NFQA"])
73
 
74
  # 在标签页 3 中添加内容
75
  with tab1:
76
- st.header("Task: Dialogue Generation; Dataset: DialyDialog")
77
  st.dataframe(df1, use_container_width=True)
78
 
79
  # 在标签页 4 中添加内容
80
  with tab2:
81
- st.header("Task: Text Expansion; Dataset: WritingPrompts")
82
  st.dataframe(df2, use_container_width=True)
83
 
84
  with tab3:
85
- st.header("Task: Summary Generation; Dataset: Xsum")
86
  st.dataframe(df3, use_container_width=True)
87
 
88
  # 在标签页 2 中添加内容
89
  with tab4:
90
- st.header("Task: Non-Factoid QA; Dataset: NF_CATS")
91
  st.dataframe(df4, use_container_width=True)
 
73
 
74
  # 在标签页 3 中添加内容
75
  with tab1:
76
+ st.markdown("""Task: Dialogue Generation; Dataset: DialyDialog""", unsafe_allow_html=True)
77
  st.dataframe(df1, use_container_width=True)
78
 
79
  # 在标签页 4 中添加内容
80
  with tab2:
81
+ st.markdown("""Task: Text Expansion; Dataset: WritingPrompts""", unsafe_allow_html=True)
82
  st.dataframe(df2, use_container_width=True)
83
 
84
  with tab3:
85
+ st.markdown("""Task: Summary Generation; Dataset: Xsum""", unsafe_allow_html=True)
86
  st.dataframe(df3, use_container_width=True)
87
 
88
  # 在标签页 2 中添加内容
89
  with tab4:
90
+ st.markdown("""Task: Non-Factoid QA; Dataset: NF_CATS""", unsafe_allow_html=True)
91
  st.dataframe(df4, use_container_width=True)