How to predict on the test set

Actually there were some updates for TTA function,

you need to call the following:

log_preds, y = learn.tta()
probs = np.mean(np.exp(log_preds), axis=0)
accuracy(probs,y)
7 Likes