F1Score metric problem on the NLP getting started competition Kaggle competition

learn = text_classifier_learner(dls, AWD_LSTM, drop_mult=0.5, metrics=F1Score)

I would expect that you may need to instantiate the metrics in this case. So try passing F1Score() instead.

5 Likes