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
For up to 120 languages, [detect](how-tos/text-analytics-how-to-language-detection.md) which language the input text is written in and report a single language code for every document submitted on the request. The language code is paired with a score indicating the strength of the score.
30
30
31
-
## Idenfity linked entities (Preview)
31
+
## Identify linked entities (Preview)
32
32
33
33
[Identify](how-tos/text-analytics-how-to-entity-linking.md) well-known entities in your text and link to more information on the web. Entity linking recognizes and disambiguates when a term is used as one of separately distinguishable entities, verbs, and other word forms.
34
34
@@ -40,21 +40,21 @@ The workflow is simple: you submit data for analysis and handle outputs in your
40
40
41
41
2.[Create a request](how-tos/text-analytics-how-to-call-api.md#json-schema) in JSON that contains your data as raw unstructured text.
42
42
43
-
3. Post the request to the endpoint established during sign-up, appending the desired resource: sentiment analysis, key phrase extraction, language detection, or entity identification.
43
+
3. Post the request to the endpoint established during sign-up, appending the desired API: sentiment analysis, key phrase extraction, language detection, or entity identification.
44
44
45
45
4. Stream or store the response locally. Depending on the request, results are either a sentiment score, a collection of extracted key phrases, or a language code.
46
46
47
47
Output is returned as a single JSON document, with results for each text document you posted, based on ID. You can subsequently analyze, visualize, or categorize the results into actionable insights.
48
48
49
-
Data is not stored in your account. Operations performed by the Text Analytics service are stateless, which means the text you provide is processed and results are returned immediately.
49
+
Operations performed by the Text Analytics service are stateless. Data is not stored in your account.
50
50
51
51
<aname="data-limits"></a>
52
52
53
53
## Specifications
54
54
55
55
### Supported languages
56
56
57
-
Please see[Supported languages in Text Analytics](text-analytics-supported-languages.md).
57
+
See[Supported languages in Text Analytics](text-analytics-supported-languages.md).
58
58
59
59
### Data limits
60
60
@@ -70,7 +70,7 @@ The rate limit is 100 calls per minute. Note you can submit a large quantity of
70
70
71
71
### Unicode encoding
72
72
73
-
The Text Analytics API uses Unicode encoding for text representation and character count calculations. Requests can be submitted in both UTF-8 and UTF-16 with no measurable differences in the character count. Unicode codepoints are used as the heuristic for character length and are considered equivalent for the purposes of text analytics data limits. If you use `String.Length` to get the character count, you are using the same method we use to measure data size.
73
+
The Text Analytics service uses Unicode encoding for text representation and character count calculations. You can submit requests in either UTF-8 or UTF-16, with no measurable differences in the character count. If you use `String.Length` to get the character count, you are using the same method we use to measure data size.
0 commit comments