I am trying to use Xcessiv to an image classification project (together with Keras or PyTorch). By reading the walkthrough, I found that I have to pass the entire dataset as a (X, y) tuple. This is unfeasible for a large image dataset. How can I outcome this problem?
One solution that I thought about was to pass image paths as the X, and let fit load the data lazily. Is this the best approach?
PS: Thanks for creating and maintaining Xcessiv!
I am trying to use Xcessiv to an image classification project (together with Keras or PyTorch). By reading the walkthrough, I found that I have to pass the entire dataset as a
(X, y)tuple. This is unfeasible for a large image dataset. How can I outcome this problem?One solution that I thought about was to pass image paths as the
X, and letfitload the data lazily. Is this the best approach?PS: Thanks for creating and maintaining Xcessiv!