陈俊杰
commited on
Commit
·
a4c2338
1
Parent(s):
eaa1d85
cjj
Browse files
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.
|
77 |
st.dataframe(df1, use_container_width=True)
|
78 |
|
79 |
# 在标签页 4 中添加内容
|
80 |
with tab2:
|
81 |
-
st.
|
82 |
st.dataframe(df2, use_container_width=True)
|
83 |
|
84 |
with tab3:
|
85 |
-
st.
|
86 |
st.dataframe(df3, use_container_width=True)
|
87 |
|
88 |
# 在标签页 2 中添加内容
|
89 |
with tab4:
|
90 |
-
st.
|
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)
|