naive-bayes icon indicating copy to clipboard operation
naive-bayes copied to clipboard

How to train through a stream? Or a way that alleviates large in-memory requirement for `model.train()` usage?

Open niftylettuce opened this issue 4 years ago • 0 comments

If you have a large dataset, of perhaps 5 GB+, then it is not efficient to do an in-memory model.train(sets, labels) approach whereas sets and labels could consist of hundreds of thousands of Arrays. What is an alternative approach to stream the sets and labels to training?

niftylettuce avatar Apr 26 '20 01:04 niftylettuce