jaifar530 commited on
Commit
8fe2540
·
unverified ·
1 Parent(s): 3a42347

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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