You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
Did you solve your problem?
I do not know if this helps, as it has been quite sometime.
But you can parallelize using ADMM.
You refit Lasso on parts of the data iteratively.
My entire design matrix cannot fit in memory.
Much like
SGDRegressor.partial_fit()
in scikit-learn (see here), can I useLasso.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
infit()
to stop after a certain number of iterations?The text was updated successfully, but these errors were encountered: