A healthcare organization needs to extract specific data elements (such as patient names, medication dosages, and dates) from unstructured doctors' notes. Which Azure Cognitive Service is best suited for this task?
Trap 1: Language Understanding (LUIS)
LUIS is designed for understanding intents and extracting entities from short conversational phrases, not for batch processing of long, unstructured medical notes.
Trap 2: Translator Text
Translator Text performs language translation, not extraction of structured data elements from text.
Trap 3: Speech
The Speech service converts audio to text and performs other speech-related tasks; it does not extract entities from written text.
- A
Language Understanding (LUIS)
Why wrong: LUIS is designed for understanding intents and extracting entities from short conversational phrases, not for batch processing of long, unstructured medical notes.
- B
Text Analytics
Text Analytics includes Named Entity Recognition, which can extract predefined categories of entities (e.g., Person, Date, Quantity) from unstructured text, making it ideal for this task.
- C
Translator Text
Why wrong: Translator Text performs language translation, not extraction of structured data elements from text.
- D
Speech
Why wrong: The Speech service converts audio to text and performs other speech-related tasks; it does not extract entities from written text.