A data scientist is working with a dataset that contains text reviews and a numeric rating (1-5). The goal is to predict the rating from the review text. During EDA, the scientist wants to check if there are any spelling errors or unusual characters. Which tool is BEST suited for this task?
Correct. Amazon Comprehend provides syntax analysis and entity detection, which can help identify unusual text patterns (e.g., misspelled words or odd characters) without custom coding. It is the most appropriate AWS AI service among the options for initial text inspection.
Why this answer
Amazon Comprehend is the best choice among the options because it is an AWS AI service that can detect syntax, entities, and key phrases in text. While it does not directly find spelling errors, it can identify unusual patterns or anomalies in text that may indicate misspellings or odd characters. SageMaker Data Wrangler is for tabular data, Athena is for SQL queries, and QuickSight is for visualization, none of which are specialized for text analysis in this context.
Exam trap
Candidates might think Amazon Comprehend can detect spelling errors directly, but it does not. It analyzes syntax and entities, which can help identify unusual patterns, but a custom solution or spell-check library would be needed for exact spelling correction.