Update app.py
Browse files
app.py
CHANGED
@@ -208,8 +208,8 @@ if st.button("Классифицировать"):
|
|
208 |
if int(top):
|
209 |
if (int(top) >= 0) and (int(top) <= 1):
|
210 |
t = int(top)
|
211 |
-
|
212 |
-
|
213 |
except ValueError:
|
214 |
t = 0.95
|
215 |
|
|
|
208 |
if int(top):
|
209 |
if (int(top) >= 0) and (int(top) <= 1):
|
210 |
t = int(top)
|
211 |
+
elif (int(top) > 1):
|
212 |
+
t = int(top) / 100
|
213 |
except ValueError:
|
214 |
t = 0.95
|
215 |
|