gpt4 book ai didi

elasticsearch - 在Elasticsearch中对同义词进行平均评分

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

我们可以在elasticsearch中对原始字符串和同义词进行均等的评分吗?

例如。我将同义词文件创建为:

pvt, private

ltd, limited



我使用同义词标记过滤器创建了一个索引。然后我索引了两个文档:
curl -XPOST "http://localhost:9200/test1/test?pretty" -d 
'{ "entityName" : "ABC International Pvt Ltd"}'

curl -XPOST "http://localhost:9200/test1/test?pretty" -d
'{ "entityName" : "ABC International Private Limited"}'

现在,当我搜索“ABC International Pvt Ltd”时,它对第一个文档的得分为1.15,第二个文档的得分为0.57。

有没有办法平等对待同义词?

使用以下设置创建索引:
curl -XPUT 'localhost:9200/test1?pretty' -H 'Content-Type: application/json' -d'
{
"settings" : {
"index" : {
"analysis":{
"analyzer":{
"my_analyzer":{
"tokenizer":"standard",
"filter":["asciifolding", "standard", "lowercase", "my_metaphone", "synonym"]
}
},
"filter":{
"my_metaphone":{
"type":"phonetic",
"encoder":"metaphone",
"replace":false
},
"synonym" : {
"type" : "synonym",
"synonyms_path" : "synonyms.txt",
"ignore_case" : "true"
}
}
}
}
}
}'

最佳答案

在创建索引的同时添加映射就可以了。如果没有映射,则甚至没有应用同义词标记过滤器。下面是我用来创建索引的命令。

curl -XPUT 'localhost:9200/test1?pretty' -H 'Content-Type: application/json' -d' 
{
"settings" : {
"analysis":{
"filter":{
"my_metaphone":{
"type":"phonetic",
"encoder":"metaphone",
"replace":false
},
"synonym" : {
"type" : "synonym",
"synonyms_path" : "synonym.txt",
"ignore_case" : "true"
}
},
"analyzer":{
"my_analyzer":{
"type":"custom",
"tokenizer":"standard",
"filter":["asciifolding", "standard", "lowercase", "my_metaphone", "synonym"]
}
}
}
},
"mappings": {
"test": {
"properties": {
"text": {
"type": "text",
"analyzer": "my_analyzer",
"search_analyzer": "my_analyzer"
}
}
}
}
}'

关于elasticsearch - 在Elasticsearch中对同义词进行平均评分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46792559/

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