I've tried running train.py and noticed there's no disk read activity after the first epoch. As far as I can see, images are read using cv2.imread and I don't think there's any buffer mechanism implemented. Is it normal to have no disk read after the first epoch? If so, how is buffering achieved?
Hello
I've tried running
train.py
and noticed there's no disk read activity after the first epoch. As far as I can see, images are read usingcv2.imread
and I don't think there's any buffer mechanism implemented. Is it normal to have no disk read after the first epoch? If so, how is buffering achieved?Thank you