Vertex AI Explainable AI and Model Monitoring Configuration
You work at a bank. You need to develop a credit risk model to support loan application decisions. You decide to implement the model by using a neural network in TensorFlow. Due to regulatory requirements, you need to be able to explain the model’s predictions based on its features. When the model is deployed, you also want to monitor the model’s performance over time. You decided to use Vertex AI for both model development and deployment. What should you do?
Community Votes
100% of anonymous learners picked answer A. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
This question tests the correct pairing of explainability methods for structured data versus images, and the distinction between monitoring for drift over time versus training-serving skew.
For structured credit risk models, use Sampled Shapley for explainability and feature distribution drift for monitoring performance over time. The community agrees that XRAI is strictly for image data and drift is necessary for temporal tracking.
Choosing XRAI methods (Options C and D) is a common error because XRAI is designed for image data, whereas credit risk models use structured tabular data requiring Sampled Shapley.
Community Discussion (3 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Option A is correct because the credit risk model uses structured data, making Sampled Shapley the appropriate explainability method. Additionally, monitoring performance "over time" requires checking for feature distribution drift, which detects changes in the data distribution as time passes.Why the Other Options Are Wrong
Options C and D are incorrect because XRAI is specifically designed for image-based models to highlight image regions, not tabular data. Option B is incorrect because feature distribution skew compares training data to serving data at a point in time, whereas the requirement is to track changes over time, which necessitates drift detection.Community Comment Notes
Comments emphasize that XRAI is for "unstructured, image region analysis" and should not be used for loan approval analysis. They also clarify that "performance over time" directly maps to drift, making skew a less suitable choice for this specific requirement.Official Reference
Exam Strategy
Always identify the data type first: use Sampled Shapley for structured data and XRAI for images. For monitoring, associate "over time" with drift and "training vs. serving" comparison with skew.
Related Analysis
Practice All PMLE Questions
Access 65 questions with complete answers and detailed explanations.
View Full PMLE Practice Test →