Best approach for initial churn model iteration and interpretability?
You work at an ecommerce startup. You need to create a customer churn prediction model. Your company’s recent sales records are stored in a BigQuery table. You want to understand how your initial model is making predictions. You also want to iterate on the model as quickly as possible while minimizing cost. How should you build your first model?
Community Votes
100% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
This question tests selecting a managed service for rapid prototyping; the trap is choosing manual data export or complex custom models over AutoML's efficiency and built-in explainability.
Vertex AI AutoML Tabular is the optimal solution for building an initial churn prediction model from BigQuery data. It provides built-in interpretability and enables rapid iteration without the overhead of data export or custom model coding.
Selecting Option A is a common mistake because while logistic regression is interpretable, exporting data to Cloud Storage and manually coding in Vertex AI Workbench increases cost and slows down the iteration process compared to AutoML.
Community Discussion (5 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Option C is correct because Vertex AI AutoML Tabular connects directly to BigQuery, eliminating data egress and storage costs associated with exporting to Cloud Storage. It automates feature engineering and model selection, which allows for the fastest possible iteration cycles required by a startup. Furthermore, AutoML provides integrated Explainable AI features (such as feature importance) that satisfy the specific requirement to understand how the model makes predictions.Why the Other Options Are Wrong
Options A and D are incorrect because they require exporting data to a Cloud Storage bucket, which introduces unnecessary latency and costs. Options B and D suggest using Deep Neural Networks (DNN); while powerful, DNNs act as 'black boxes' that are significantly harder to interpret than the models generated by AutoML, and they require extensive manual coding for training and deployment. Option A uses scikit-learn for logistic regression, which is interpretable, but it lacks the automated infrastructure and speed of AutoML for rapid prototyping.Community Comment Notes
Community consensus strongly supports Option C, emphasizing the balance between ease of implementation and cost-effectiveness. Users noted that AutoML leverages BigQuery natively to minimize data movement costs and provides a pay-per-use model suitable for startups. Comments also highlighted that while custom training (Options A, B, D) offers control, it adds complexity and time that contradicts the goal of iterating 'as quickly as possible.'Official Reference
Exam Strategy
When questions ask for an 'initial model' or 'rapid iteration,' prioritize Vertex AI AutoML over custom training to reduce development time. Always check if data export is necessary; keeping data in BigQuery is usually the most cost-effective approach for Google Cloud ML scenarios.
Related Analysis
Practice All PMLE Questions
Access 65 questions with complete answers and detailed explanations.
View Full PMLE Practice Test →