I didn't see any response so I wanted to check if my observation simply is not
relevant for other people or if I missed to provide any required details.
Thanks!
-Original Message-
Date: 05/09/2019 08:28 AM
Subject: Negative boost query (bq) with edismax for lower scores with Solr 8
I f
I understand that the only way to simulate a negative boost is to positively
boost the inverse. I have looked at
http://wiki.apache.org/solr/SolrRelevancyFAQ but I think I am missing
something on the formatting of my query. I am using:
http://localhost:8983/solr/search?q=dog&bq=(*:* -species:She
I think the key was change the tie to 0. I had it at 0.1. Getting
exactly what I want now.
Big thanks for the help.
-Original Message-
From: Jason Chaffee [mailto:jchaf...@ebates.com]
Sent: Monday, March 29, 2010 5:20 PM
To: solr-user@lucene.apache.org
Subject: RE: negative boost
I
dismax.
Thanks for the tip. I will try it.
Jason
-Original Message-
From: Chris Hostetter [mailto:hossman_luc...@fucit.org]
Sent: Monday, March 29, 2010 5:06 PM
To: solr-user@lucene.apache.org
Subject: RE: negative boost
: Unfortunately, my results aren't quite what I want unless I
: Unfortunately, my results aren't quite what I want unless I use 0 on the
: second field. Instead, if something matches in all the fields it is
: elevated to the top. I only want the first field match elevated to the
: top and I want all first field matches to have the same weight. Next, I
-
From: Paul Libbrecht [mailto:p...@activemath.org]
Sent: Monday, March 29, 2010 1:10 PM
To: solr-user@lucene.apache.org
Subject: Re: negative boost
Jason,
don't you want
field1^3 * field2^1 * field3^0.9
?
As written in Lucene in action, it's all multiplied.
So "negative bo
Jason,
don't you want
field1^3 • field2^1 • field3^0.9
?
As written in Lucene in action, it's all multiplied.
So "negative boost" means "boost under 1"
(and probably elsewhere)
paul
PS: take the log and you get this negative.
Le 29-mars-10 à 21:08, Jason Chaffee a écrit :
Is it possible