Topic 1 Question 80
An ML engineer is developing a fraud detection model by using the Amazon SageMaker XGBoost algorithm. The model classifies transactions as either fraudulent or legitimate. During testing, the model excels at identifying fraud in the training dataset. However, the model is inefficient at identifying fraud in new and unseen transactions. What should the ML engineer do to improve the fraud detection for new transactions?
Increase the learning rate.
Remove some irrelevant features from the training dataset.
Increase the value of the max_depth hyperparameter.
Decrease the value of the max_depth hyperparameter.
ユーザの投票
コメント(1)
- 正解だと思う選択肢: D
This is the scenario of overfitting where it works well with trained data and not with new data. Reducing the max_depth hyperparameter makes the model less complex, helping it generalize better to new data.
👍 2Saransundar2024/12/04
シャッフルモード