In fastai v2 i am trying to add image augmentations
So
tfms = aug_transforms(do_flip = True,
flip_vert=True,
max_lighting=0.1,
)
data = ImageDataLoaders.from_df(df,bs=5,item_tfms=tfms,folder=path_to_data)
this give output
Could not do one pass in your dataloader, there is something wrong in it
And when i do
data.show_batch()
it give
RuntimeError: "check_uniform_bounds" not implemented for 'Byte'
How to resolve
I didn't try the do_flip transformation, but what worked for me was to apply them not as item_tfms but as batch_tfms:
You can then feed the DataBlock into a DataLoader like in the fastbook tutorial