make a Text Analytics API call. You call the following URL. https://ai102cs.cognitiveservices.azure.com/text/analytics/v3.1/entities?showStats=false You send the following body. { "documents": [ { "language": "en", "id": "1", "text": "Our tour guide took us up the Space Needle during our trip to Seattle last week." } ] } You receive the following response body. { "documents": [{ "id": "1", "entities": [{ "name": "Space Needle
You make a Text Analytics API call.
You call the following URL.
https://ai102cs.cognitiveservices.azure.com/text/analytics/v3.1/entities?showStats=false
You send the following body.
{ "documents": [ { "language": "en", "id": "1", "text": "Our tour guide took us up the Space Needle during our trip to Seattle last week." } ] }
You receive the following response body.
{ "documents": [{ "id": "1", "entities": [{ "name": "Space Needle", "matches": [{ "wikipediaScore": 0.3979737247920536, "text": "Space Needle", "offset": 30, "length": 12 }], "wikipediaLanguage": "en", "wikipediaId": "Space Needle", "wikipediaUrl": "https://en.wikipedia.org/wiki/Space_Needle", "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", "type": "Location" }, { "name": "Space Needle", "matches": [{ "entityTypeScore": 0.71, "text": "Space Needle", "offset": 30, "length": 12 }], "type": "Organization" }, { "name": "Seattle", "matches": [{ "wikipediaScore": 0.2544970497716894, "entityTypeScore": 0.81, "text": "Seattle", "offset": 62, "length": 7 }], "wikipediaLanguage": "en", "wikipediaId": "Seattle", "wikipediaUrl": "https://en.wikipedia.org/wiki/Seattle", "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", "type": "Location", "subType": "GPE" } ] }], "errors": [] }
The language of the document is the same as the language for suggested Wikipedia entries.
Select Yes if the statement is true. Otherwise, select No.
Select only one answer.
1.Yes
2.No
Trending now
This is a popular solution!
Step by step
Solved in 2 steps