Rudi

Results 4 comments of Rudi
trafficstars

There is another bad anomaly related to that, that mostly becomes obvious if a smaller window_size is used and the documents after the window_size are fetched: Inside ES only the...

I could reproduce this bug with standard elasticsearch rescorers. It always happens when a rescorers tanks the scores, e.g. by multiplying a score < 1 with the original score: ```...

This anomalies can be avoided by boosting the documents within the desired window_size into a higher value range. This is the solution that works for my usecase: ``` "rescore": [...

@rlps as you mention yourself, the scores of all other documents outside of the "rescore window" will be 0 with this approach. At least in my case this is not...