1NEYRON1 commited on
Commit
8c06641
·
1 Parent(s): c3b06d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -206,10 +206,10 @@ if st.button("Классифицировать"):
206
  t = 0.95
207
  t_str
208
  if top:
209
- if (top >= 0) and (top =< 1):
210
  t = top
211
  t_str = str(top * 100)
212
- elif (top > 1) and (top =< 100):
213
  t = top / 100
214
  t_str = str(top)
215
 
 
206
  t = 0.95
207
  t_str
208
  if top:
209
+ if (top >= 0) and (top <= 1):
210
  t = top
211
  t_str = str(top * 100)
212
+ elif (top > 1) and (top <= 100):
213
  t = top / 100
214
  t_str = str(top)
215