MrDdz commited on
Commit
8657a05
·
1 Parent(s): 52618e7

updated app

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -89,5 +89,5 @@ if text and button:
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)
 
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)