gpt4 book ai didi

python - 更改Elasticsearch中的评分功能

转载 作者:行者123 更新时间:2023-12-02 22:38:04 24 4
gpt4 key购买 nike

我需要在Elasticsearch中检索文档,而不是通过使用的默认评分功能(例如tfidf等)来检索,而只需通过词频或词频(不是idf等)来检索。
有没有办法修改它?我可以用python做吗?

最佳答案

如果您根本不关心TF / IDF,则可以使用constant_score

{
"query": {
"bool": {
"constant_score": {
"query": {
"match": {
"description": "any word"
}
}
}
}
}
}

关于python - 更改Elasticsearch中的评分功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43372998/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com