-
Notifications
You must be signed in to change notification settings - Fork 71
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
Feature Request: Add Sum Aggregation and Column-Wise Multiplication for Sparse Vectors #475
Comments
Thanks for your interest! May I ask what's your scenario to do the aggregate sum for sparse vectors? What's the query looks like? |
And what's Column-Wise Multiplication? Do you mean dot product between sparse vectors? |
We utilize a sparse vector as a bag-of-words representation for a set of documents. In this representation, each dimension in the sparse vector denotes a term, while the value indicates its frequency within a given document. By using the sum aggregation, we would be able to easily compute some statistics about the collection.
My bad, I meant element-wise multiplication, not column-wise. |
Understand! PRs on the way |
Starting off, we'd like to express our appreciacion for the project.
Integrating the following operations for sparse vectors would be of great use to our use case:
By incorporating these functionalities, we can streamline computations directly within the database, sparing us the overhead of loading them into our application.
Thank you for considering this request.
The text was updated successfully, but these errors were encountered: