What is the best format to save images to disk so that the loading speed is fastest ?
I am guessing that .JPG format might be suboptimal, maybe some other format works better ?
my case: I have some 9k .JPG images (large 8000x8000 images) and am loading them (using PIL for the moment) for training using pytorch on 2x GPUs. I have a large batch size 256 and am noticing that the bottleneck is the loading of these images (which are then resized, augmented and so on)
Anyone knows of any benchmarks on different saving and loading techniques ?