Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import streamlit as st
|
|
2 |
from transformers import pipeline
|
3 |
import torch
|
4 |
import matplotlib.pyplot as plt
|
|
|
5 |
#from PIL import Image
|
6 |
|
7 |
|
@@ -80,7 +81,7 @@ if st.button('Submit'):
|
|
80 |
ax.set_ylabel("Predicted category")
|
81 |
st.pyplot(fig)
|
82 |
|
83 |
-
st.write('Category: {} | Probability: {:.1f}%'.format(labels_plot[number],(probs_plot[predictions])*1))
|
84 |
# output = genQuestion(option, input)
|
85 |
# print(output)
|
86 |
# st.write(output)
|
|
|
2 |
from transformers import pipeline
|
3 |
import torch
|
4 |
import matplotlib.pyplot as plt
|
5 |
+
import nump as np
|
6 |
#from PIL import Image
|
7 |
|
8 |
|
|
|
81 |
ax.set_ylabel("Predicted category")
|
82 |
st.pyplot(fig)
|
83 |
|
84 |
+
st.write('Category: {} | Probability: {:.1f}%'.format(labels_plot[np.array(number)],(probs_plot[predictions])*1))
|
85 |
# output = genQuestion(option, input)
|
86 |
# print(output)
|
87 |
# st.write(output)
|