핵심 구 추출
핵심 구 추출은 하나 또는 여러 문서의 텍스트를 평가한 다음 문서의 컨텍스트에서 요점을 파악하는 프로세스입니다.
핵심 구 추출은 대규모 문서에 가장 적합합니다(분석할 수 있는 최대 크기는 5,120자).
언어 감지와 마찬가지로 REST 인터페이스를 사용하면 분석을 위해 하나 이상의 문서를 제출할 수 있습니다.
{
"kind": "KeyPhraseExtraction",
"parameters": {
"modelVersion": "latest"
},
"analysisInput":{
"documents":[
{
"id": "1",
"language": "en",
"text": "You must be the change you wish
to see in the world."
},
{
"id": "2",
"language": "en",
"text": "The journey of a thousand miles
begins with a single step."
}
]
}
}
응답에는 각 문서에서 검색된 핵심 구 목록이 포함됩니다.
{
"kind": "KeyPhraseExtractionResults",
"results": {
"documents": [
{
"id": "1",
"keyPhrases": [
"change",
"world"
],
"warnings": []
},
{
"id": "2",
"keyPhrases": [
"miles",
"single step",
"journey"
],
"warnings": []
}
],
"errors": [],
"modelVersion": "2021-06-01"
}
}