How Should You Adjust AutoML Parameters for Fraud Detection?
You are developing a model to detect fraudulent credit card transactions. You need to prioritize detection, because missing even one fraudulent transaction could severely impact the credit card holder. You used AutoML to tram a model on users' profile information and credit card transaction data After training the initial model, you notice that the model is failing to detect many fraudulent transactions. How should you adjust the training parameters in AutoML to improve model performance? (Choose two.)
Community Votes
67% of anonymous learners picked answer B. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
This question tests your ability to align model tuning with business risk by adjusting classification thresholds and addressing class imbalance, while avoiding the trap of misidentifying the target class or modifying irrelevant compute parameters.
Optimizing machine learning models for high-stakes detection requires balancing precision and recall through threshold management and dataset composition. The community consensus confirms that lowering the classification threshold and augmenting positive examples are the most effective strategies to minimize missed fraudulent transactions.
Candidates frequently select option D due to confusing which class is labeled positive versus negative, but adding more legitimate transaction examples would further suppress the model's ability to identify rare fraud cases.
Community Discussion (9 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Lowering the classification threshold increases model sensitivity, directly reducing false negatives at the expense of higher false positives, which aligns perfectly with scenarios where missing fraud carries severe consequences. Furthermore, real-world fraud datasets suffer from extreme class imbalance; explicitly adding more positive (fraudulent) examples to the training set forces AutoML to learn minority-class decision boundaries more effectively, boosting recall.Why the Other Options Are Wrong
Increasing the score threshold tightens classification criteria, which inevitably raises false negatives and contradicts the priority of maximizing detection. Adding more negative examples deepens the class imbalance, causing the model to bias toward predicting legitimate transactions and further dropping recall. Reducing maximum node hours restricts computational resources and training epochs, preventing the model from converging and degrading overall predictive performance.Community Comment Notes
The voting distribution and top comments strongly validate B and C, with multiple candidates noting that decreasing the threshold captures more suspicious activity while accepting manageable false positives [Comment 1, 2]. Several discussions clarify the terminology confusion around class labeling, reinforcing that fraud must be treated as the positive class regardless of its statistical rarity [Comment 4, 6]. Users also emphasize linking metric adjustments directly to business impact, demonstrating practical AutoML operational knowledge [Comment 7, 8].Official Reference
Exam Strategy
Always translate business risk tolerance into specific ML metrics before selecting tuning actions. When missing a rare event is unacceptable, prioritize recall optimization through threshold reduction and positive class augmentation rather than precision-focused adjustments.
Related Analysis
Practice All PMLE Questions
Access 65 questions with complete answers and detailed explanations.
View Full PMLE Practice Test →