Gregoryjr commited on
Commit
b68d098
·
unverified ·
1 Parent(s): 81311d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ if con:
26
  result = classifier(text)
27
 
28
 
29
- st.writes(result[0]['score'])
30
 
31
 
32
 
 
26
  result = classifier(text)
27
 
28
 
29
+ st.write(f"Score: {result[0]['score']*100:.2f}% confidence")
30
 
31
 
32