Fix dataloader with num_workers > 0
Allow data augmentation in the data loader:
- From scratch, preloading every image and augmented images
- Live augmentation, with workers
The current problem is:
- The model will infer on augmented data, but the UI sees only original data. If affine augmentation, missmatch btw segmentation and original images..
Solution could be:
- UI image and pred/label should pass through "dataset norm function", i.e., if defined, inverted augmentation first.
Fix dataloader with num_workers > 0
Allow data augmentation in the data loader:
The current problem is:
Solution could be: