AI-102 Implement natural language processing solutions • Set 3
AI-102 Implement natural language processing solutions Practice Test 3 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You are defining a custom entity recognition model in Azure AI Language. The exhibit shows a partial configuration. What is the relationship between 'Laptop' and 'Electronics'?
Refer to the exhibit.
```json
{
"customModels": {
"entities": [
{
"category": "Product",
"subcategory": "Electronics",
"name": "Laptop"
},
{
"category": "Product",
"subcategory": "Electronics",
"name": "Smartphone"
}
],
"relations": [
{
"relationType": "InstanceOf",
"source": "Laptop",
"target": "Electronics"
},
{
"relationType": "InstanceOf",
"source": "Smartphone",
"target": "Electronics"
}
]
}
}
```