My entire design matrix cannot fit in memory.
Much like SGDRegressor.partial_fit() in scikit-learn (see here), can I use Lasso.jl to fit in epochs, feeding batches of data at a time? I realize that this will likely not converge to the same parameters as if the data could all fit in memory.
Maybe one way to train in batches would be to modify criterion in fit() to stop after a certain number of iterations?
My entire design matrix cannot fit in memory.
Much like
SGDRegressor.partial_fit()in scikit-learn (see here), can I useLasso.jlto fit in epochs, feeding batches of data at a time? I realize that this will likely not converge to the same parameters as if the data could all fit in memory.Maybe one way to train in batches would be to modify
criterioninfit()to stop after a certain number of iterations?