jaifar530 commited on
Commit
a5e0d40
·
unverified ·
1 Parent(s): 6a7904b

fix the output

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -127,7 +127,16 @@ if press_me_button:
127
  new_labels = [label_mapping[label] for label in labels]
128
 
129
  # Create a dictionary that maps new labels to probabilities
130
- prob_dict = dict(zip(new_labels, probabilities))
 
 
 
131
 
132
  # Print the dictionary
133
- st.write(prob_dict)
 
 
 
 
 
 
 
127
  new_labels = [label_mapping[label] for label in labels]
128
 
129
  # Create a dictionary that maps new labels to probabilities
130
+ prob_dict = {k: v for k, v in zip(new_labels, probabilities)}
131
+
132
+ # Convert probabilities to percentages and sort the dictionary in descending order
133
+ prob_dict = {k: f'{v*100:.2f}%' for k, v in sorted(prob_dict.items(), key=lambda item: item[1], reverse=True)}
134
 
135
  # Print the dictionary
136
+ st.write(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)
141
+ st.progress(float(prob.strip('%')))
142
+ st.bar_chart(prob_dict)