Re: Vector Search Parser(!vp) : calculate cosine

2023-05-30 Thread rajani m
Hi Alessandro, Thank you, I will look forward to those features. On Fri, May 26, 2023 at 12:10 PM Alessandro Benedetti wrote: > Hi Rajani, > the issues you mentioned are very old and superseded by more recent works > in the vector-based search domain. > The 'knn' query parser that Kumar detai

Re: Vector Search Parser(!vp) : calculate cosine

2023-05-26 Thread Alessandro Benedetti
Hi Rajani, the issues you mentioned are very old and superseded by more recent works in the vector-based search domain. The 'knn' query parser that Kumar detailed is the official way of doing vector search in Solr. Function queries for vector similarities and the possibility of better Hybrid searc

Re: Vector Search Parser(!vp) : calculate cosine

2023-05-25 Thread rajani m
That also invokes knn, correct? I just need the vector math response, a cosine value of the query vector and document vector. For example, the streaming api endpoint vector-math.html#dot-product-and-cosine-similarity

Re: Vector Search Parser(!vp) : calculate cosine

2023-05-25 Thread kumar gaurav
HI Rajani Read here : https://solr.apache.org/guide/solr/latest/query-guide/dense-vector-search.html The knn query parser can be used . &q={!knn f=vector topK=10}[1.0, 2.0, 3.0, 4.0] Thanks Kumar Gaurav On Fri, 26 May 2023 at 00:14, Rajani Maski wrote: > Hi Solr Users, > >Is there a v

Vector Search Parser(!vp) : calculate cosine

2023-05-25 Thread Rajani Maski
Hi Solr Users, Is there a vector search parser that allows computing distance between a document's vector field and query vector passed as query param? The jiras SOLR-14397 SOLR-12890 sugges