We create a databunch with all the data in the training set and no validation set (DatasetFormatter uses only the training set)
db = (ImageItemList.from_folder(path)
.no_split()
.label_from_folder()
.transform([crop_pad, crop_pad], size=224)
.databunch())
this gives an error. Anyone have solution for this