Spaces:
Runtime error
Runtime error
Commit
·
9a839b7
1
Parent(s):
0ba7189
change graph view
Browse files
app.py
CHANGED
@@ -33,13 +33,14 @@ if (submit and len(text.strip()) > 0) or len(text.strip()) > 0:
|
|
33 |
|
34 |
prediction = pipe(text)[0]
|
35 |
prediction = sort_predictions(prediction)
|
|
|
36 |
|
37 |
fig, ax = plt.subplots()
|
38 |
-
ax.bar(
|
39 |
-
|
40 |
tick_label=[p['label'] for p in prediction])
|
41 |
ax.tick_params(rotation=90)
|
42 |
-
ax.set_ylim(0,
|
43 |
|
44 |
st.header('Result:')
|
45 |
st.pyplot(fig)
|
|
|
33 |
|
34 |
prediction = pipe(text)[0]
|
35 |
prediction = sort_predictions(prediction)
|
36 |
+
max_ylim = prediction[0]['score'] + 0.1
|
37 |
|
38 |
fig, ax = plt.subplots()
|
39 |
+
ax.bar(y=[i for i, _ in enumerate(prediction)],
|
40 |
+
width=[p['score'] for p in prediction],
|
41 |
tick_label=[p['label'] for p in prediction])
|
42 |
ax.tick_params(rotation=90)
|
43 |
+
ax.set_ylim(0, max_ylim)
|
44 |
|
45 |
st.header('Result:')
|
46 |
st.pyplot(fig)
|