solr-vector-scoring icon indicating copy to clipboard operation
solr-vector-scoring copied to clipboard

Vector Plugin for Solr: calculate dot product / cosine similarity on documents

Results 8 solr-vector-scoring issues
Sort by recently updated
recently updated
newest added

I am facing `NullPointerException` at https://github.com/saaay71/solr-vector-scoring/blob/master/src/com/github/saaay71/solr/VectorScoreQuery.java#L48 line number. The term vector is null and when checking the size it throws NullPointerException. I tried to debug this issue but unable to...

Any thoughts on how to get this running on solr8.5? CustomScoreQuery and FunctionScoreQuery both seem to be unavailable in solr8.5.

Hi, In the given example you took embedding of size 5.. in case of solr 8.5, vector embed of length 512 or greater when we send request for querying. it...

When following your installation procedure and executing your Examples, I ran into the following error with Query 1: `java.lang.UnsupportedOperationException: Query {! type=vp f=vector vector=0.1,4.75,0.3,1.2,0.7,4.0 v=} does not implement createWeight`

The code is upgraded to run on the Solr 8.6 using updated APIs FunctionScoreQuery and DoubleValuesSource.

After implementing custom scorer, search became too slow. My index has around 4000000 docs. Querying takes around 50 seconds which is too slow. Any solution on how to make in...

Lucene Term Vectors are a bit heavy to use in the way this plugin does. And why encode/decode the vector ordinal numbers as terms at all? Instead I propose as...