gpt4 book ai didi

elasticsearch - elasticsearch从文本中提取关键字

转载 作者:行者123 更新时间:2023-12-03 02:21:44 63 4
gpt4 key购买 nike

我有4000多个关键字要由Elasticsearch索引。
我想将其传递给文本并提取现有的关键字。
第一个问题是,当我传递一些数字时,它可以工作,但是当我传递许多关键字时,它会提取文本中没有的单词。
第二个问题是它仅提取空格之前和之后的单词。
我想从单词中提取关键字

最佳答案

    PUT test
{
"settings": {
"analysis": {
"analyzer": {
"my_analyzer_keyword": {
"type": "custom",
"tokenizer": "keyword",
"filter": [
"asciifolding",
"lowercase"
]
},
"my_analyzer_shingle": {
"type": "custom",
"tokenizer": "standard",
"filter": [
"asciifolding",
"lowercase",
"shingle"
]
}
}
}
}
}

POST /test/your_type/
{
"keyword": "search"
}

POST /test/your_type/_search
{
"query": {
"match": {
"keyword": "elasticsearch"
}
}
}

关于elasticsearch - elasticsearch从文本中提取关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62213269/

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