gpt4 book ai didi

azure - 将 EntityRecognitionSkill 限制为confidence > .5

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

我在我的技能集中使用 Microsoft.Skills.Text.EntityRecognitionSkill,它输出“人员”、“位置”、“组织”。但是我只想输出置信度 > .5 的位置有没有办法做到这一点?这是我的代码的快照

{
"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
"categories": [
"Person",
"Location",
"Organization"
],
"context": "/document/finalText/pages/*",
"inputs": [
{
"name": "text",
"source": "/document/finalText/pages/*"
},
{
"name": "languageCode",
"source": "/document/languageCode"
}
],
"outputs": [
{
"name": "persons",
"targetName": "people"
},
{
"name": "locations"
},
{
"name": "namedEntities",
"targetName": "entities"
}
]
},

最佳答案

[根据米克的评论进行编辑]

是的,这应该可以通过将实体识别技能的 minimumPrecision 参数设置为 0.5 来实现,这将导致返回置信度 >= 0.5 的实体。

实体识别技能的文档在这里:https://learn.microsoft.com/en-us/azure/search/cognitive-search-skill-entity-recognition

正如 Mick 指出的,文档说 minimumPrecision 未使用,但是该文档已过时,我会尽快修复它。

关于azure - 将 EntityRecognitionSkill 限制为confidence > .5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58613465/

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