jaifar530 commited on
Commit
2f31df1
·
unverified ·
1 Parent(s): 7dad0db

fix output

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -137,6 +137,6 @@ if press_me_button:
137
 
138
  # Create a progress bar and a bar chart for each LLM
139
  for llm, prob in prob_dict.items():
140
- st.write(llm + ': ' + float(prob.strip('%')))
141
  st.progress(float(prob.strip('%'))/100)
142
  st.bar_chart(prob_dict)
 
137
 
138
  # Create a progress bar and a bar chart for each LLM
139
  for llm, prob in prob_dict.items():
140
+ st.write(llm + ': ' + prob)
141
  st.progress(float(prob.strip('%'))/100)
142
  st.bar_chart(prob_dict)