title | titleSuffix | description | services | author | manager | ms.service | ms.component | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|
Geography V2 prebuilt entity - LUIS Reference |
Azure Cognitive Services |
This article contains geographyV2 prebuilt entity information in Language Understanding (LUIS). |
cognitive-services |
diberry |
cjgronlund |
cognitive-services |
language-understanding |
article |
09/24/2018 |
diberry |
The prebuilt geographyV2 entity detects places. Because this entity is already trained, you do not need to add example utterances containing GeographyV2 to the application intents. GeographyV2 entity is supported in English culture.
The geographical locations have subtypes:
Subtype | Purpose |
---|---|
poi |
point of interest |
city |
name of city |
countryRegion |
name of country or region |
continent |
name of continent |
state |
name of state or province |
The following example shows the resolution of the builtin.geographyV2 entity.
{
"query": "Carol is visiting the sphinx in gizah egypt in africa before heading to texas",
"topScoringIntent": {
"intent": "None",
"score": 0.8008023
},
"intents": [
{
"intent": "None",
"score": 0.8008023
}
],
"entities": [
{
"entity": "the sphinx",
"type": "builtin.geographyV2.poi",
"startIndex": 18,
"endIndex": 27
},
{
"entity": "gizah",
"type": "builtin.geographyV2.city",
"startIndex": 32,
"endIndex": 36
},
{
"entity": "egypt",
"type": "builtin.geographyV2.countryRegion",
"startIndex": 38,
"endIndex": 42
},
{
"entity": "africa",
"type": "builtin.geographyV2.continent",
"startIndex": 47,
"endIndex": 52
},
{
"entity": "texas",
"type": "builtin.geographyV2.state",
"startIndex": 72,
"endIndex": 76
},
{
"entity": "carol",
"type": "builtin.personName",
"startIndex": 0,
"endIndex": 4
}
]
}