wrapper228 commited on
Commit
f494a7e
1 Parent(s): 19bf1f9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,9 +42,9 @@ st.markdown("##### To get an article topic prediction, please write down it's ti
42
 
43
  st.markdown('<style>textarea { background: gray !important;}</style>', unsafe_allow_html=True)
44
 
45
- title = st.text_area("Write article title:", height=30, unsafe_allow_html=True)
46
 
47
- abstract = st.text_area("Write article abstract:", height=60, unsafe_allow_html=True)
48
 
49
  input_text = title + " " + abstract
50
 
 
42
 
43
  st.markdown('<style>textarea { background: gray !important;}</style>', unsafe_allow_html=True)
44
 
45
+ title = st.text_area("Write article title:", height=30)
46
 
47
+ abstract = st.text_area("Write article abstract:", height=60)
48
 
49
  input_text = title + " " + abstract
50