Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ st.title("Arxiv articles classification")
|
|
8 |
st.markdown("This is an interface that can determine the article's topic based on its title and summary. Though it can work with title only, it is recommended that you provide summary if possible - this will result in a better prediction quality.")
|
9 |
|
10 |
title = st.text_area(label='Title', height=100)
|
11 |
-
summary = st.text_area(label='Summary (optional)', height=
|
12 |
|
13 |
text = title + "\n" + summary
|
14 |
st.markdown(text)
|
|
|
8 |
st.markdown("This is an interface that can determine the article's topic based on its title and summary. Though it can work with title only, it is recommended that you provide summary if possible - this will result in a better prediction quality.")
|
9 |
|
10 |
title = st.text_area(label='Title', height=100)
|
11 |
+
summary = st.text_area(label='Summary (optional)', height=250)
|
12 |
|
13 |
text = title + "\n" + summary
|
14 |
st.markdown(text)
|