LUIS 应用的百分比预生成实体
重要
LUIS 将于 2025 年 10 月 1 日停用,从 2023 年 4 月 1 日开始,你将无法创建新的 LUIS 资源。 建议将 LUIS 应用程序迁移到对话语言理解,以便从持续的产品支持和多语言功能中受益。
百分比数字可以显示为分数 3 1/2
或百分比 2%
。 此实体已定型,因此不需要将包含百分比的陈述示例添加到应用程序意向中。 许多语言区域都支持百分比实体。
百分比类型
百分比托管在 Recognizers-text GitHub 存储库中
预构建百分比实体的解析
查询返回以下实体对象:
set a trigger when my stock goes up 2%
以下 JSON 的 verbose
参数设置为 false
:
"entities": {
"percentage": [
2
]
}
以下 JSON 的 verbose
参数设置为 true
:
"entities": {
"percentage": [
2
],
"$instance": {
"percentage": [
{
"type": "builtin.percentage",
"text": "2%",
"startIndex": 36,
"length": 2,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
以下示例显示了 builtin.percentage 实体的解析。
"entities": [
{
"entity": "2%",
"type": "builtin.percentage",
"startIndex": 36,
"endIndex": 37,
"resolution": {
"value": "2%"
}
}
]
后续步骤
了解序号、数字和温度实体。