Hello,

I need to perform a One-Class Classification (OCC) task, but the training data does not fit on my memory. I was using sklearn's OneClassSVM and when I realized that I would need online training, I noticed that this class does not offer a partial_fit method. Looking for an alternative, I found SGDClassifier, which offers such method, but cannot be used for OCC tasks, as far as I know. I also found that sklearn does not support HDF5, which could be an alternative to this problem.

Which Python's lib should I use for OCC with support to HDF5 would you most recommend? If there is no such alternative, which lib should I use to perform OCC tasks with online training, not necessarily supporting HDF5?

Thank you!

Similar questions and discussions