Re: [scikit-learn] Incremental learning in scikit-learn

2020-11-15 Thread Danny Sullivan
Hi Farzana, The chunks do not have to be the same size, you just need to call partial_fit to update the model. Hope that helps. Danny El El dom, nov. 15, 2020 a la(s) 11:39 a. m., Farzana Anowar < fad...@uregina.ca> escribió: > Hello everyone, > > Currently, I am working with incremental

[scikit-learn] Incremental learning in scikit-learn

2020-11-15 Thread Farzana Anowar
Hello everyone, Currently, I am working with incremental learning. I know that scikit-learn allows using incremental learning for some classifiers i. e. SGD. In incremental learning, data is not available all together rather the data become available chunk by chunk over the time. Now, my