arkmartov commited on
Commit
37e5cd3
1 Parent(s): 42fda87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -29,6 +29,9 @@ def Print(logits, dictionary):
29
  idx += 1
30
 
31
  def filter(title, abstract):
 
 
 
32
  return True
33
 
34
  st.title('Классификация статьи по названию и описанию')
 
29
  idx += 1
30
 
31
  def filter(title, abstract):
32
+ if len(title) < 10 and (len(abstract) > 0 and len(abstract) < 20):
33
+ st.markdown("Хммм... Вы точно не ошиблись? Слишком маленькое название или описание.")
34
+ return false
35
  return True
36
 
37
  st.title('Классификация статьи по названию и описанию')