PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #171
You work for a magazine distributor and need to build a model that predicts which customers will renew their subscriptions for the upcoming year. Using your company's historical data as your training
The correct answer is B. Use Vertex Explainable AI. Submit each prediction request with the explain' keyword to retrieve. To determine the most predictive customer attribute for each individual prediction from a TensorFlow model deployed on Vertex AI, you should use Vertex Explainable AI.
Question
Options
- AStream prediction results to BigQuery. Use BigQuery's CORR(X1, X2) function to calculate the
- BUse Vertex Explainable AI. Submit each prediction request with the explain' keyword to retrieve
- CUse Vertex AI Workbench user-managed notebooks to perform a Lasso regression analysis on
- DUse the What-If tool in Google Cloud to determine how your model will perform when individual
How the community answered
(25 responses)- A4% (1)
- B76% (19)
- C12% (3)
- D8% (2)
Why each option
To determine the most predictive customer attribute for each individual prediction from a TensorFlow model deployed on Vertex AI, you should use Vertex Explainable AI.
Calculating correlation in BigQuery would provide aggregate relationships between features and outcomes, not per-instance feature importance for individual predictions from a deployed model.
Vertex Explainable AI provides feature attributions, quantifying how much each input feature contributed to a model's individual prediction, which directly addresses the requirement to determine per-instance predictive power. Submitting prediction requests with the 'explain' keyword retrieves these specific explanations for each prediction.
Performing Lasso regression analysis is a method for feature selection during model development, not for explaining individual predictions from an already deployed model in production.
The What-If Tool allows interactive exploration of model behavior by changing feature values, but it's primarily for debugging and 'what-if' scenarios, not for programmatically retrieving feature importance for every prediction served.
Concept tested: Vertex Explainable AI for per-instance feature attributions
Source: https://cloud.google.com/vertex-ai/docs/explainable-ai/overview
Topics
Community Discussion
No community discussion yet for this question.