ilyshi commited on
Commit
50ac7e6
1 Parent(s): b1cc36e
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,6 +59,6 @@ text = st.text_area("Введите название научной статьи
59
  st.markdown("### Article Abstract")
60
  text = st.text_area("Введите описание статьи", height=200)
61
 
62
-
63
- make_prediction(text)
64
 
 
59
  st.markdown("### Article Abstract")
60
  text = st.text_area("Введите описание статьи", height=200)
61
 
62
+ if text is not None:
63
+ make_prediction(text)
64