Spaces:
Sleeping
Sleeping
updated app
Browse files
app.py
CHANGED
@@ -88,6 +88,6 @@ if text and button:
|
|
88 |
|
89 |
labels = ['Negative','Neutral','Positive']
|
90 |
scores = {l:float(s) for (l,s) in zip(labels,scores_)}
|
91 |
-
st.write("Logits: ",output.logits)
|
92 |
-
y_pred = np.argmax(output.logits.detach().numpy(),axis =1)
|
93 |
-
|
|
|
88 |
|
89 |
labels = ['Negative','Neutral','Positive']
|
90 |
scores = {l:float(s) for (l,s) in zip(labels,scores_)}
|
91 |
+
# st.write("Logits: ",output.logits)
|
92 |
+
# y_pred = np.argmax(output.logits.detach().numpy(),axis =1)
|
93 |
+
st.write("Prediction :",scores)
|