There is sparse vector implementation in River? #694
-
Hi everyone! First I want to thank you for this excellent package. I have to replicate some features of software made in MOA. Some class of the package of the software called "SparseInstance" instance, which is a sparse vector implementation of MOA. I was reading the River documentation, but I couldn't find any similar. So I'm not sure if it exists under another name. I'm a little curious about the VectorDict class that I could use for something similar. Thanks, everyone :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Well, in River we use |
Beta Was this translation helpful? Give feedback.
Well, in River we use
dict
s, which are sparse by design. They don't have a predetermined length. AVectorDict
is "just" a fancydict
that is optimized for algebric operations.