1
Implement knowledge mining and information extraction solutions
medium
Refer to the exhibit. You are configuring an Azure AI Search skillset. The skillset includes an EntityRecognitionSkill and a KeyPhraseExtractionSkill. After running the indexer, you notice that the 'organizations' field is empty in the index. What is the most likely cause?
Exhibit
{
"skillset": {
"cognitiveServices": "/subscriptions/.../providers/Microsoft.CognitiveServices/accounts/my-cog-svc",
"skills": [
{
"@odata.type": "#Microsoft.Skills.Text.V3.EntityRecognitionSkill",
"categories": ["Person", "Organization", "Location"]
},
{
"@odata.type": "#Microsoft.Skills.Text.V3.KeyPhraseExtractionSkill"
}
]
}
}