Tabular batch prediction with fastai v2

Hi @ajka

This should work (I used it for text_classifier_learner but it should be the same for tabular):

test_dl = learner.dls.test_dl(test_binary_features)
predictions = learner.get_preds(dl=test_dl)
4 Likes