作成済みの geographyV2 エンティティは、場所を検出します。 このエンティティは既にトレーニングされているので、GeographyV2 を含む発話の例をアプリケーション意図に追加する必要はありません。 GeographyV2 エンティティは、英語カルチャでサポートされています。
次の 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
は目的地 (Point of Interest) の略です。
次の JSON は、verbose
パラメーターが true
に設定されている場合です。
"entities": {
"geographyV2": [
{
"value": "the sphinx",
"type": "poi"
},
{
"value": "gizah",
"type": "city"
},
{
"value": "egypt",
"type": "countryRegion"
},
{
"value": "africa",
"type": "continent"
},
{
"value": "texas",
"type": "state"
}
],
"$instance": {
"geographyV2": [
{
"type": "builtin.geographyV2.poi",
"text": "the sphinx",
"startIndex": 18,
"length": 10,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.city",
"text": "gizah",
"startIndex": 32,
"length": 5,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.countryRegion",
"text": "egypt",
"startIndex": 38,
"length": 5,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.continent",
"text": "africa",
"startIndex": 47,
"length": 6,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.state",
"text": "texas",
"startIndex": 72,
"length": 5,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
次の例では、builtin.geographyV2 エンティティの解決を示します。
"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
}
]