LUIS 앱에 대한 keyPhrase 미리 빌드된 엔터티
Important
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
}
]
다음 단계
백분율, 숫자 및 연령 엔터티에 대해 알아봅니다.