Question 1mediummultiple choice
Read the full Implement knowledge mining and document intelligence solutions explanation →AI-102 Implement knowledge mining and document intelligence solutions • Complete Question Bank
Complete AI-102 Implement knowledge mining and document intelligence solutions question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
```json
{
"skills": [
{
"@odata.type": "#Microsoft.Skills.Text.SplitSkill",
"name": "#1",
"context": "/document",
"defaultLanguageCode": "en",
"textSplitMode": "pages",
"maximumPageLength": 5000,
"inputs": [
{
"name": "text",
"source": "/document/content"
}
],
"outputs": [
{
"name": "textItems",
"targetName": "pages"
}
]
}
]
}```Refer to the exhibit.
```json
{
"skills": [
{
"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
"name": "#1",
"description": "Extract organizations",
"context": "/document",
"categories": ["Organization"],
"inputs": [
{
"name": "text",
"source": "/document/content"
}
],
"outputs": [
{
"name": "organizations",
"targetName": "organizations"
}
]
},
{
"@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
"name": "#2",
"description": "Extract key phrases",
"context": "/document",
"inputs": [
{
"name": "text",
"source": "/document/content"
}
],
"outputs": [
{
"name": "keyPhrases",
"targetName": "keyPhrases"
}
]
}
]
}
```Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Drag-and-drop ML model building
Interactive code development
Command-line management of Azure resources
Programmatic access to Azure services
Run AI services on-premises