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
Analyze sentiment of text to determine if it's positive, negative, neutral or mixed, including per-sentence sentiment analysis and confidence scores.
192
+
[analyze_sentiment][analyze_sentiment] looks at its inputtext and determines whether its sentiment ispositive, negative, neutral or mixed. It's response includes per-sentence sentiment analysis and confidence scores.
193
193
194
194
```python
195
195
from azure.ai.textanalytics import TextAnalyticsClient, TextAnalyticsApiKeyCredential
@@ -219,7 +219,7 @@ The returned response is a heterogeneous list of result and error objects: list[
219
219
Please refer to the service documentation for a conceptual discussion of [sentiment analysis][sentiment_analysis].
220
220
221
221
### Recognize entities
222
-
Recognize andcategorize entities in text as people, places, organizations, date/time, quantities, percentages, currencies, and more.
222
+
[recognize_entities][recognize_entities] recognizes andcategories entities in its input text as people, places, organizations, date/time, quantities, percentages, currencies, and more.
223
223
224
224
```python
225
225
from azure.ai.textanalytics import TextAnalyticsClient, TextAnalyticsApiKeyCredential
@@ -247,7 +247,7 @@ Please refer to the service documentation for a conceptual discussion of [named
247
247
and [supported types][named_entity_categories].
248
248
249
249
### Recognize PII entities
250
-
Recognize andcategorize Personally Identifiable Information (PII) entities in text, such as
250
+
[recognize_pii_entities][recognize_pii_entities] recognizes andcategorizes Personally Identifiable Information (PII) entities in its input text, such as
251
251
Social Security Numbers, bank account information, credit card numbers, and more.
252
252
253
253
```python
@@ -274,7 +274,7 @@ The returned response is a heterogeneous list of result and error objects: list[
274
274
Please refer to the service documentation for [supported PII entity types][pii_entity_categories].
275
275
276
276
### Recognize linked entities
277
-
Recognize anddisambiguate the identity of each entity found in text (for example,
277
+
[recognize_linked_entities][recognize_linked_entities] recognizes anddisambiguates the identity of each entity found in its input text (for example,
278
278
determining whether an occurrence of the word Mars refers to the planet, or to the
279
279
Roman god of war). Recognized entities are associated with URLs to a well-known knowledge base, like Wikipedia.
280
280
@@ -307,7 +307,7 @@ Please refer to the service documentation for a conceptual discussion of [entity
307
307
and [supported types][linked_entities_categories].
308
308
309
309
### Extract key phrases
310
-
Extract key phrases in text to determine the main talking points. For example, for the input text "The food was delicious and there were wonderful staff", the API returns: "food"and"wonderful staff".
310
+
[extract_key_phrases][extract_key_phrases] determines the main talking pointsin its input text. For example, for the input text "The food was delicious and there were wonderful staff", the API returns: "food"and"wonderful staff".
311
311
312
312
```python
313
313
from azure.ai.textanalytics import TextAnalyticsClient, TextAnalyticsApiKeyCredential
@@ -332,7 +332,7 @@ The returned response is a heterogeneous list of result and error objects: list[
332
332
Please refer to the service documentation for a conceptual discussion of [key phrase extraction][key_phrase_extraction].
333
333
334
334
### Detect language
335
-
Determine the language in text, including the confidence score of the predicted language.
335
+
[detect_language][detect_language] determines the language of its input text, including the confidence score of the predicted language.
336
336
337
337
```python
338
338
from azure.ai.textanalytics import TextAnalyticsClient, TextAnalyticsApiKeyCredential
@@ -473,6 +473,13 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
0 commit comments