-
Notifications
You must be signed in to change notification settings - Fork 46
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
Add sparse vector implementation #5
Comments
Over in LensKit, we take a somewhat different design:
The big things that we need are performance-related:
|
@elehack thanks for the comments - very interesting. I need to have a think about how much of this we can support in Vectorz. Initial thoughts:
|
Our vectors have 3 versions with 2 concrete implementations:
|
Got it. The immutable / mutable approach is consistent with what we do in Vectorz, we actually have two distinct tests:
Also Vectorz is getting some adoption as the main pure-JVM matrix library in Clojure, so immutability is an important priority. The negative indexes I think can't be supported with the current Vectorz This still leaves open the option of a sparse vector implemented as a wrapper over a Vectorz dense vector. That might actually be a good solution: a lot of performance would come from the underlying dense vector, while the wrapper could take care of the mapping and indexing. Could be something like an enhanced variant of the current |
FWIW, I've now added immutable vectors and matrices to the latest development branch of Vectorz. Will be in the 0.25.0 release |
OK we now have a Closing this specific issue as I think the original scope is now covered. Hopefully this solves the mutable sparse case for LensKit as well - if not then should probably be a new issue. |
Various applications (machine learning, collaborative filtering, recommender systems) depend on large sparse vectors, which contain relatively few non-zero values relative to their size.
Proposal is to add sparse vectors with the following attributes:
Efficiency is probably best achieved with a shallow tree data structure, though a hashmap based sparse vector could also be an option.
The text was updated successfully, but these errors were encountered: