Augmentation with new images

Hi
How can I add processed images to the original dataset and train on the new dataset meaning Original and processed. Thanks in advance!

You could create a Dataset without any data augmentation, and another one with some augmentations.
Once both are created, you could use ConcatDataset to concatenate them into a single Dataset, which can be passed to a DataLoader.

1 Like