gpt4 book ai didi

amazon-web-services - Elasticsearch 语音分析器返回零结果?

转载 作者:行者123 更新时间:2023-12-02 23:11:23 27 4
gpt4 key购买 nike

我使用ES语音分析器得到0个结果。

使用AWS-https://aws.amazon.com/about-aws/whats-new/2016/12/amazon-elasticsearch-service-now-supports-phonetic-analysis/中的内置插件。

在建立索引之前,我使用此代码来设置语音分析器。

PUT enpoint/courts_2
{
"settings": {
"index": {
"analysis": {
"analyzer": {
"my_analyzer": {
"tokenizer": "standard",
"filter": [
"lowercase",
"my_metaphone"
]
}
},
"filter": {
"my_metaphone": {
"type": "phonetic",
"encoder": "metaphone",
"replace": true
}
}
}
}
}
}

注意:我尚未专门下载它,因为AWS已对其进行了预先构建(请检查上面的链接)。
现在,
我正在使用此代码对端点进行查询-
{
"query": {
"multi_match" : {
"query" : "Abhijith",
"fields" : ["content", "title^10"],
"analyzer": "my_analyzer"


}
},
"size": "1",
"_source": [ "title", "bench", "court" ],
"highlight": {
"fields" : {
"title" : {},
"content":{}
}
}

}

但是我得到的结果是零。我得到以下输出:
{
"took": 1,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 0,
"relation": "eq"
},
"max_score": null,
"hits": []
}
}

我可以确认,当不使用分析仪时,我会获得点击率。

当我使用此代码时,它虽然返回正常输出。
GET courts_2/_analyze
{
"analyzer": "my_analyzer",
"text": "Abhijith"
}

响应
{
"tokens": [
{
"token": "ABHJ",
"start_offset": 0,
"end_offset": 8,
"type": "<ALPHANUM>",
"position": 0
}
]
}

索引映射
{
"courts_2": {
"mappings": {
"properties": {
"author": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"bench": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"citation": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"content": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"court": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"date": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"id_": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"title": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"verdict": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
}

最佳答案

看来您没有为Courts_2索引指定映射。因此,所有文本字段都使用标准分析器进行索引。

因此,语音标记没有索引,因此在查询时无法匹配。

要将文本字段配置为使用分析仪,则需要使用此类映射

PUT enpoint/courts_2
{
"settings": {
"index": {
"analysis": {
"analyzer": {
"my_analyzer": {
"tokenizer": "standard",
"filter": [
"lowercase",
"my_metaphone"
]
}
},
"filter": {
"my_metaphone": {
"type": "phonetic",
"encoder": "metaphone",
"replace": true
}
}
}
}
},
"mappings": {
"properties": {
"content": {
"type": "text",
"analyzer": "my_analyzer"
},
"title": {
"type": "text",
"analyzer": "my_analyzer"
}
}
}
}

Here the documentation about mapping parameters

问候。

关于amazon-web-services - Elasticsearch 语音分析器返回零结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60087899/

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