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
Regarding your latest software submission: log file. You get a KeyError: 'lang' from clf.fit(X, targets_validation['lang'])
This is because the model should not be trained on TIRA (only evaluated). So you should train your model on the training dataset, save the weights and then upload the model weights, training and validation scripts. Please check an example on how it was done for the previous task using Naive Bayes model here.
The text was updated successfully, but these errors were encountered:
Regarding your latest software submission: log file. You get a
KeyError: 'lang'
fromclf.fit(X, targets_validation['lang'])
This is because the model should not be trained on TIRA (only evaluated). So you should train your model on the training dataset, save the weights and then upload the model weights, training and validation scripts. Please check an example on how it was done for the previous task using Naive Bayes model here.
The text was updated successfully, but these errors were encountered: