Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -56,18 +56,18 @@ input = st.text_input('Context')
|
|
56 |
if st.button('Submit'):
|
57 |
with st.spinner('Generating a response...'):
|
58 |
encoding = tokenizer(text, return_tensors="pt")
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
'Opmerkelijk' ,'Politiek', 'Regionaal nieuws', 'Tech']
|
67 |
-
|
68 |
|
69 |
-
|
70 |
-
|
71 |
# output = genQuestion(option, input)
|
72 |
# print(output)
|
73 |
# st.write(output)
|
|
|
56 |
if st.button('Submit'):
|
57 |
with st.spinner('Generating a response...'):
|
58 |
encoding = tokenizer(text, return_tensors="pt")
|
59 |
+
outputs = model(**encoding)
|
60 |
+
predictions = outputs.logits.argmax(-1)
|
61 |
+
probabilities = torch.nn.functional.softmax(outputs.logits, dim=-1)
|
62 |
|
63 |
+
fig = plt.figure()
|
64 |
+
ax = fig.add_axes([0,0,1,1])
|
65 |
+
labels_plot = ['Binnenland', 'Buitenland' ,'Cultuur & Media' ,'Economie' ,'Koningshuis',
|
66 |
'Opmerkelijk' ,'Politiek', 'Regionaal nieuws', 'Tech']
|
67 |
+
probs_plot = probabilities[0].cpu().detach().numpy()
|
68 |
|
69 |
+
ax.barh(labels_plot,probs_plot )
|
70 |
+
st.pyplot(fig)
|
71 |
# output = genQuestion(option, input)
|
72 |
# print(output)
|
73 |
# st.write(output)
|