Spaces:
Running
Running
jaifar530
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -121,7 +121,8 @@ if press_me_button:
|
|
121 |
|
122 |
for author, prob in sorted_probabilities:
|
123 |
st.write(f"{author}: {prob * 100:.2f}%")
|
124 |
-
st.progress(prob)
|
|
|
125 |
|
126 |
|
127 |
|
|
|
121 |
|
122 |
for author, prob in sorted_probabilities:
|
123 |
st.write(f"{author}: {prob * 100:.2f}%")
|
124 |
+
st.progress(float(prob))
|
125 |
+
|
126 |
|
127 |
|
128 |
|