You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
old_preds = preds.copy()
preds = [] #[0,1,2] ==>-1[2,0,1]
for x in old_preds:
if x ==2:
preds.append(1)
if x ==1:
preds.append(0)
if x==0:
preds.append(2)
we get the result
"eval_results_mnli.json"
{
"eval_accuracy": 0.8469689251146205,
"eval_loss": 15.527382850646973
}
Hi there @madlag,
Thanks for your great work!
It seems there is a problem for MNLI
if we update text_classification/parameters.json with do_train: 0
and run following,
we get the result
"eval_results_mnli.json"
I would really appreciate if you could double-check the code and there could be a bug? Or I must miss something.
The text was updated successfully, but these errors were encountered: