PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #170
Your organization manages an online message board. A few months ago, you discovered an increase in toxic language and bullying on the message board. You deployed an automated text classifier that flag
The correct answer is D. Raise the threshold for comments to be considered toxic or harmful.. To address a high false positive rate for benign comments from underrepresented religious groups with limited resources, you should raise the classification threshold for comments to be considered toxic.
Question
Options
- AAdd synthetic training data where those phrases are used in non-toxic ways.
- BRemove the model and replace it with human moderation.
- CReplace your model with a different text classifier.
- DRaise the threshold for comments to be considered toxic or harmful.
How the community answered
(61 responses)- A3% (2)
- B5% (3)
- C11% (7)
- D80% (49)
Why each option
To address a high false positive rate for benign comments from underrepresented religious groups with limited resources, you should raise the classification threshold for comments to be considered toxic.
Adding synthetic training data requires development effort for data generation and integration, which may not be feasible for an overextended team with a limited budget.
Replacing the model with human moderation would incur significant operational costs and discard the existing ML investment, which is contrary to having a limited budget.
Replacing the model with a different text classifier demands substantial research, development, and deployment efforts, which are not suitable for a team that is already overextended and has a limited budget.
Raising the threshold for comments to be classified as toxic directly reduces the model's sensitivity, lowering the false positive rate for benign comments without requiring extensive retraining or new data collection. This is a quick, cost-effective intervention, aligning with the constraints of a limited budget and overextended team.
Concept tested: Model bias mitigation with classification thresholds
Source: https://developers.google.com/machine-learning/crash-course/classification/precision-and-recall
Topics
Community Discussion
No community discussion yet for this question.