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
}
]
下一步
瞭解 百分比、 數位和 年齡 實體。