Spaces:
Sleeping
Sleeping
jaifar530
commited on
fix the output
Browse files
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 =
|
|
|
|
|
|
|
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)
|