你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
LUIS 应用的序号预生成实体
重要
LUIS 将于 2025 年 10 月 1 日停用,从 2023 年 4 月 1 日开始,你将无法创建新的 LUIS 资源。 建议将 LUIS 应用程序迁移到对话语言理解,以便从持续的产品支持和多语言功能中受益。
序号是一个集合内的对象的数字表示形式:first
、second
、third
。 此实体已定型,因此不需要将包含序号的陈述示例添加到应用程序意向中。 许多语言区域都支持序号实体。
序号类型
序号托管在 Recognizers-text GitHub 存储库中
预构建序号实体的解析
查询返回以下实体对象:
Order the second option
以下 JSON 的 verbose
参数设置为 false
:
"entities": {
"ordinal": [
2
]
}
以下 JSON 的 verbose
参数设置为 true
:
"entities": {
"ordinal": [
2
],
"$instance": {
"ordinal": [
{
"type": "builtin.ordinal",
"text": "second",
"startIndex": 10,
"length": 6,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
以下示例展示了 builtin.ordinal 实体的解析。
"entities": [
{
"entity": "second",
"type": "builtin.ordinal",
"startIndex": 10,
"endIndex": 15,
"resolution": {
"value": "2"
}
}
]
后续步骤
了解序号 V2、电话号码和温度实体。