LUIS アプリの keyPhrase 作成済みエンティティ
- [アーティクル]
-
-
重要
LUIS は 2025 年 10 月 1 日に廃止され、2023 年 4 月 1 日から新しい LUIS リソースを作成できなくなります。 継続的な製品サポートと多言語機能のベネフィットを得るために、LUIS アプリケーションを会話言語理解に移行することをお勧めします。
keyPhrase エンティティは、発話からさまざまなキー フレーズを抽出します。 keyPhrase が含まれている発話例をアプリケーションに追加する必要はありません。 keyPhrase エンティティは、言語サービス フィーチャーの一環として多くのカルチャでサポートされています。
作成済み keyPhrase エンティティの解決
次のエンティティ オブジェクトがクエリに対して返されます。
where is the educational requirements form for the development and engineering group
次の JSON は、verbose
パラメーターが false
に設定されている場合です。
"entities": {
"keyPhrase": [
"educational requirements",
"development"
]
}
次の JSON は、verbose
パラメーターが true
に設定されている場合です。
"entities": {
"keyPhrase": [
"educational requirements",
"development"
],
"$instance": {
"keyPhrase": [
{
"type": "builtin.keyPhrase",
"text": "educational requirements",
"startIndex": 13,
"length": 24,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.keyPhrase",
"text": "development",
"startIndex": 51,
"length": 11,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
次の例では、builtin.keyPhrase エンティティの解決を示します。
"entities": [
{
"entity": "development",
"type": "builtin.keyPhrase",
"startIndex": 51,
"endIndex": 61
},
{
"entity": "educational requirements",
"type": "builtin.keyPhrase",
"startIndex": 13,
"endIndex": 36
}
]
次のステップ
percentage、number、age エンティティについて学習します。