-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot use SGD with sparse matrix #90
Comments
thanks Jeff! Indeed, working on sparse models is a priority. |
Since you are using RcppArmadillo, the equivalent class would be a arma::sp_mat instead of arma::mat. Is it just a matter of changing the Rcpp interfaces ? If so I could help with that |
@dustinvtran would this change interfere with any changes you are currently implementing? |
Duplicate #85 |
apologies for the (very) delayed response; from a cursory glance it would be as simple as changing those classes. |
Hi, great package! I noticed that you can only use the sgd(x = ..., y = ...) interface if x is either a big matrix or a matrix, but not a sparse matrix as in the result of sparse.model.matrix. This support would be great
The text was updated successfully, but these errors were encountered: