LUIS 应用的 GeographyV2 预生成实体

重要

LUIS 将于 2025 年 10 月 1 日停用,从 2023 年 4 月 1 日开始,你将无法创建新的 LUIS 资源。 建议将 LUIS 应用程序迁移对话语言理解,以便从持续的产品支持和多语言功能中受益。

预构建的 geographyV2 可以检测地点。 由于此实体已经过训练,因此不需要将包含 GeographyV2 的陈述示例添加到应用程序意向中。 GeographyV2 实体支持英语区域性

子类型

地理位置具有以下子类型:

子类型 用途
poi 兴趣点
city 城市名称
countryRegion 国家/地区或区域名称
continent 洲名称
state 省/自治区/直辖市名称

GeographyV2 实体的解析

查询返回以下实体对象:

Carol is visiting the sphinx in gizah egypt in africa before heading to texas.

以下 JSON 的 verbose 参数设置为 false

"entities": {
    "geographyV2": [
        {
            "value": "the sphinx",
            "type": "poi"
        },
        {
            "value": "gizah",
            "type": "city"
        },
        {
            "value": "egypt",
            "type": "countryRegion"
        },
        {
            "value": "africa",
            "type": "continent"
        },
        {
            "value": "texas",
            "type": "state"
        }
    ]
}

在上述 JSON 中,poi兴趣点的缩写。

后续步骤

了解电子邮件数字序号实体。