HMPhuoc commited on
Commit
3679935
·
1 Parent(s): 880e759

fix judgeBert

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -149,6 +149,7 @@ def judgeBert(x):
149
  result_bert = np.round(bert_pred, 2)
150
  #result_bert = np.round(bert_pred, 2)
151
 
 
 
152
 
153
-
154
- return (result_bert)
 
149
  result_bert = np.round(bert_pred, 2)
150
  #result_bert = np.round(bert_pred, 2)
151
 
152
+ for i in range(6):
153
+ result.append(result_bert[i])
154
 
155
+ return (result)