A company uses Azure AI Language for sentiment analysis on customer feedback. They notice that the sentiment scores for mixed reviews are often neutral when they should be slightly positive. They need to improve the accuracy for these mixed reviews without labeling new data. Which approach should you recommend?
Trap 1: Adjust the sentiment threshold to require a higher confidence for…
This may cause genuine neutral reviews to be misclassified.
Trap 2: Use a prebuilt sentiment analysis model with a different language.
Changing language is not relevant to domain-specific accuracy.
Trap 3: Create and train a custom sentiment analysis model using labeled…
A custom model trained on domain data will better handle mixed reviews.
- A
Adjust the sentiment threshold to require a higher confidence for neutral.
Why wrong: This may cause genuine neutral reviews to be misclassified.
- B
Enable opinion mining to capture aspects and opinions separately.
Opinion mining adds detail but does not improve the base sentiment model.
- C
Use a prebuilt sentiment analysis model with a different language.
Why wrong: Changing language is not relevant to domain-specific accuracy.
- D
Create and train a custom sentiment analysis model using labeled feedback data.
Why wrong: A custom model trained on domain data will better handle mixed reviews.