So I was trying to predict the results for my test set using the code:
learn.data = (src.add_test_folder('test1-images')
.transform(tfms, size=224)
.databunch()
.normalize(imagenet_stats))
preds, extra = learn.get_preds(ds_type=DatasetType.Test)
and I got an error shown in the picture.
Can someone tell me what is wrong