AWS Certified Machine Learning – Specialty — Question 353

A telecommunications company has deployed a machine learning model using Amazon SageMaker. The model identifies customers who are likely to cancel their contract when calling customer service. These customers are then directed to a specialist service team. The model has been trained on historical data from multiple years relating to customer contracts and customer service interactions in a single geographic region.

The company is planning to launch a new global product that will use this model. Management is concerned that the model might incorrectly direct a large number of calls from customers in regions without historical data to the specialist service team.

Which approach would MOST effectively address this issue?

Answer options

Correct answer: A

Explanation

Amazon SageMaker Model Monitor is the native AWS service designed to automatically detect data drift by comparing real-time inference data against a baseline training dataset. When the model encounters data from new geographic regions, Model Monitor can identify the statistical drift and trigger CloudWatch alerts so data scientists can retrain the model with the expanded dataset. Other options like SageMaker Debugger are meant for debugging model training rather than monitoring production data drift, and manual log analysis lacks the automated statistical drift detection capabilities of Model Monitor.