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
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
By default k-NN plugin uses dense vector for Cosine similarity measure. NMS library has support for sparse vector space type. We could enable this support in k-NN plugin.
The text was updated successfully, but these errors were encountered:
In order to implement Sparse Vector Support, we would need to make a modification to our object creation in JNI code. Currently, the dataset is represented as float * and that pointer is passed in to create the corresponding object. However, for sparse vector support, we would need to represent the Object's data set as SparseVectElem.
Additionally, we need to think of the appropriate UX for users to input data for this format. For example, users could input data in the following format:
{<index>: <value>,..}
By default k-NN plugin uses dense vector for Cosine similarity measure. NMS library has support for sparse vector space type. We could enable this support in k-NN plugin.
The text was updated successfully, but these errors were encountered: