AI-102 Implement knowledge mining and information extraction solutions • Set 7
AI-102 Implement knowledge mining and information extraction solutions Practice Test 7 — 15 questions with explanations. Free, no signup.
You have the above skillset in Azure AI Search. The indexer processes a document with 12,000 characters of content. How many entity recognition skill executions occur?
Refer to the exhibit.
{
"skills": [
{
"@odata.type": "#Microsoft.Skills.Text.SplitSkill",
"name": "split",
"context": "/document",
"textSplitMode": "pages",
"maximumPageLength": 5000,
"pageOverlapLength": 500,
"inputs": [
{ "name": "text", "source": "/document/content" }
],
"outputs": [
{ "name": "textItems", "targetName": "pages" }
]
},
{
"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
"name": "entities",
"context": "/document/pages/*",
"categories": [ "Person", "Organization" ],
"inputs": [
{ "name": "text", "source": "/document/pages/*" }
],
"outputs": [
{ "name": "entities", "targetName": "entities" }
]
}
]
}