
Ultimate access to all questions.
You work at an ecommerce startup that wants to proactively reduce customer churn by building a prediction model. Your company's recent sales records are stored in a BigQuery table. Your objectives are to: 1) create an initial customer churn prediction model, 2) understand how the model is making predictions, 3) iterate on the model quickly, and 4) minimize costs. Given these requirements, how should you build your first model?
A
Export the data to a Cloud Storage bucket. Load the data into a pandas DataFrame on Vertex AI Workbench and train a logistic regression model with scikit-learn.
B
Create a tf.data.Dataset by using the TensorFlow BigQueryClient. Implement a deep neural network in TensorFlow.
C
Prepare the data in BigQuery and associate the data with a Vertex AI dataset. Create an AutoMLTabularTrainingJob to train a classification model.
D
Export the data to a Cloud Storage bucket. Create a tf.data.Dataset to read the data from Cloud Storage. Implement a deep neural network in TensorFlow.