Custom scoring function at search time #272
Replies: 3 comments 1 reply
-
Hi @Denisp01 👋 Thanks for this feedback. Could you tell me more about your need? I understand that it would allow you to have a dynamic score for certain searches precisely. Why do you need to customize the scoring of the results so precisely for an end-user? What are the moments where it makes sense in your use case? I am very curious to know more. 🤓 Thanks for your answer! |
Beta Was this translation helpful? Give feedback.
-
This feature request is similar to another one, on decay functions: #205 |
Beta Was this translation helpful? Give feedback.
-
Hello everyone 👋 We just released a 🧪 prototype that allows boosting results that match a custom filter, and we'd love your feedback. How to use the prototype?See https://www.notion.so/meilisearch/boostingFilter-API-usage-20aae06bc85e41dba828a90331a69f2c Feedback and bug reporting when using this prototype are encouraged! Thanks in advance for your involvement. It means a lot to us ❤️ |
Beta Was this translation helpful? Give feedback.
-
Custom scoring function at search time
ElasticSearch analog: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#function-script-score
For example:
"script_score": {
"script": {
"source": "Math.log(2 + doc['my-int'].value)"
}
}
Beta Was this translation helpful? Give feedback.
All reactions