USearch has a sqlite extension that supports various metrics on including Hamming distance on standard sqlite BLOB columns. It gets similar performance and is very convenient.
(There's also an indexed variant that does faster lookups, but it uses a special virtual table layout that constrains the types of the other columns in the table.)
You could first calculate the distance of the first n bits (eg: 64, one popcountll) as a first pass, then calculate the full distance for candidates over a threshold from the first pass. It makes it approximate, but depending on the application it can be worth it.
mbreese [3 hidden]5 mins ago
I was thinking of something similar — instead of just two passes, couldn’t you also store different quantized values? If you have thousands of documents, you could narrow it down to a handful with a few bit-wise Hamming comparisons before doing a full cosine similarity on just the rest. If you hand more than one bitmap stored, you’d have fewer comparisons at each step too.
Author here... it is free for open-source projects.
What kind of license would you like more?
simonw [3 hidden]5 mins ago
One that lets me use it in my open source projects without then preventing other people from using my open source projects in their closed source projects.
Using your library currently completely disrupts the licensing situation for my own work.
woadwarrior01 [3 hidden]5 mins ago
There's also the recently released zvec[1], the tagline for which is: The SQLite of Vector Databases.
Has anyone tried keyword expansion in this context?
I had the idea of making a "poor man's embeddings" for document similarity. You want two documents to match even if they share no keywords, as long as their keywords are closely related, right? That seems like a very solvable problem.
esafak [3 hidden]5 mins ago
Are today's models any good at helping write postgres or sqlite extensions?
(There's also an indexed variant that does faster lookups, but it uses a special virtual table layout that constrains the types of the other columns in the table.)
See https://github.com/unum-cloud/USearch. pip-installable for Python users.
Would this work?
What kind of license would you like more?
Using your library currently completely disrupts the licensing situation for my own work.
[1]: https://github.com/alibaba/zvec
I had the idea of making a "poor man's embeddings" for document similarity. You want two documents to match even if they share no keywords, as long as their keywords are closely related, right? That seems like a very solvable problem.