gpt4 book ai didi

elasticsearch - 换行符或标点符号作为 Elasticsearch 中的位置间隙

转载 作者:行者123 更新时间:2023-11-29 02:46:40 25 4
gpt4 key购买 nike

在 elasticsearch 中,有没有办法设置一个分析器,当遇到换行符或标点符号时,会在标记之间产生位置间隙?

假设我用以下无意义的字符串(带有换行符)作为其字段之一索引了一个对象:

The quick brown fox runs after the rabbit.
Then comes the jumpy frog.

标准分析器将产生以下具有相应位置的 token :

0 the
1 quick
2 brown
3 fox
4 runs
5 after
6 the
7 rabbit
8 then
9 comes
10 the
11 jumpy
12 frog

这意味着 the rabbit then comesmatch_phrase 查询会将此文档匹配为命中。有没有办法在 rabbitthen 之间引入一个位置间隙,以便它不匹配,除非引入一个 slop

当然,解决方法可能是将单个字符串转换为数组(每个条目一行)并在字段映射中使用 position_offset_gap,但我真的宁愿保留一个带有换行符的字符串 (最终的解决方案将涉及换行符的位置间隙大于标点符号的位置间隙)。

最佳答案

我最终想出了一个解决方案,使用 char_filter 在换行符和标点符号上引入额外的标记:

PUT /index
{
"settings": {
"analysis": {
"char_filter": {
"my_mapping": {
"type": "mapping",
"mappings": [ ".=>\\n_PERIOD_\\n", "\\n=>\\n_NEWLINE_\\n" ]
}
},
"analyzer": {
"my_analyzer": {
"tokenizer": "standard",
"char_filter": ["my_mapping"],
"filter": ["lowercase"]
}
}
}
}
}

使用示例字符串进行测试

POST /index/_analyze?analyzer=my_analyzer&pretty
The quick brown fox runs after the rabbit.
Then comes the jumpy frog.

产生以下结果:

{
"tokens" : [ {
"token" : "the",
"start_offset" : 0,
"end_offset" : 3,
"type" : "<ALPHANUM>",
"position" : 1
}, {
... snip ...
"token" : "rabbit",
"start_offset" : 35,
"end_offset" : 41,
"type" : "<ALPHANUM>",
"position" : 8
}, {
"token" : "_period_",
"start_offset" : 41,
"end_offset" : 41,
"type" : "<ALPHANUM>",
"position" : 9
}, {
"token" : "_newline_",
"start_offset" : 42,
"end_offset" : 42,
"type" : "<ALPHANUM>",
"position" : 10
}, {
"token" : "then",
"start_offset" : 43,
"end_offset" : 47,
"type" : "<ALPHANUM>",
"position" : 11
... snip ...
} ]
}

关于elasticsearch - 换行符或标点符号作为 Elasticsearch 中的位置间隙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32608726/

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