PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #113
You have successfully deployed to production a large and complex TensorFlow model trained on tabular data. You want to predict the lifetime value (LTV) field for each subscription stored in the…
The correct answer is B. Add a model monitoring job where 10% of incoming predictions are sampled 24 hours. Vertex AI Model Monitoring detects feature and prediction drift by sampling incoming prediction requests and comparing their distributions to a training baseline. Sampling 10% of predictions every 24 hours is the balanced approach: 10% provides a statistically meaningful sample…
Question
Options
- AImplement continuous retraining of the model daily using Vertex AI Pipelines.
- BAdd a model monitoring job where 10% of incoming predictions are sampled 24 hours.
- CAdd a model monitoring job where 90% of incoming predictions are sampled 24 hours.
- DAdd a model monitoring job where 10% of incoming predictions are sampled every hour.
How the community answered
(68 responses)- A13% (9)
- B76% (52)
- C3% (2)
- D7% (5)
Explanation
Vertex AI Model Monitoring detects feature and prediction drift by sampling incoming prediction requests and comparing their distributions to a training baseline. Sampling 10% of predictions every 24 hours is the balanced approach: 10% provides a statistically meaningful sample without excessive cost, and a 24-hour window aggregates enough data to detect meaningful distributional shifts without generating alert noise. Option C (90% sampling) is wasteful and unnecessary for drift detection. Option D (every hour) is too frequent for a subscription dataset that changes slowly and would incur unnecessary cost. Option A (daily retraining) responds to drift but does not detect or alert on it-retraining without monitoring blindly refreshes the model without diagnosing whether drift is actually occurring.
Topics
Community Discussion
No community discussion yet for this question.