You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/language-service/named-entity-recognition/how-to-call.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: How to perform Named Entity Recognition (NER)
3
3
titleSuffix: Azure AI services
4
-
description: This article will show you how to extract named entities from text.
4
+
description: This article shows you how to extract named entities from text.
5
5
#services: cognitive-services
6
6
author: jboback
7
7
manager: nitinme
@@ -37,7 +37,7 @@ The API attempts to detect the [defined entity categories](concepts/named-entity
37
37
38
38
## Getting NER results
39
39
40
-
When you get results from NER, you can stream the results to an application or save the output to a file on the local system. The API response will include[recognized entities](concepts/named-entity-categories.md), including their categories and subcategories, and confidence scores.
40
+
When you get results from NER, you can stream the results to an application or save the output to a file on the local system. The API response includes[recognized entities](concepts/named-entity-categories.md), including their categories and subcategories, and confidence scores.
41
41
42
42
## Select which entities to be returned
43
43
@@ -46,7 +46,7 @@ The API attempts to detect the [defined entity types and tags](concepts/named-en
46
46
**Input:**
47
47
48
48
> [!NOTE]
49
-
> In this example, it returns only the **Location** entity type.
49
+
> In this example, it returns only the **"Location"** entity type.
50
50
51
51
```bash
52
52
{
@@ -110,13 +110,13 @@ Using these parameters we can successfully filter on only `Location` entity type
110
110
111
111
## Additional output attributes
112
112
113
-
In order to provide users with more insight into an entity's types and provide increased usability, NER supports these additional attributes in the output:
113
+
In order to provide users with more insight into an entity's types and provide increased usability, NER supports these attributes in the output:
|`type`|String |The most specific type of detected entity.<br><br>For example, “Seattle” is a City, a GPE (Geo Political Entity) and a “Location”. The most granular classification for “Seattle” is that it is a “City”. The type would be “City” for the text “Seattle".|
118
-
|`tags` |List (tags) |A list of tag objects which expresses the affinity of the detected entity to a hierarchy or any other grouping.<br><br>A tag contains two fields:<br>1. `name`: A unique name for the tag.<br>2. `confidenceScore`: The associated confidence score for a tag ranging from <br><br>This unique tagName will be used to filter in the `inclusionList` and `exclusionList` parameters
119
-
|`metadata` |Object |Metadata is an object containing additional data about the entity type detected. It changes based on the field `metadataKind`.
117
+
|`type`|String |The most specific type of detected entity.<br><br>For example, “Seattle” is a `City`, a `GPE` (Geo Political Entity) and a `Location`. The most granular classification for “Seattle” is that it is a `City`. The type would be “City” for the text “Seattle".|
118
+
|`tags` |List (tags) |A list of tag objects which expresses the affinity of the detected entity to a hierarchy or any other grouping.<br><br>A tag contains two fields:<br>1. `name`: A unique name for the tag.<br>2. `confidenceScore`: The associated confidence score for a tag ranging from <br><br>This unique tagName is be used to filter in the `inclusionList` and `exclusionList` parameters
119
+
|`metadata` |Object |Metadata is an object containing more data about the entity type detected. It changes based on the field `metadataKind`.
0 commit comments