By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
(Vertex AI Workbench, Custom Training, AutoML, BigQuery ML)
Training options in GCP determine how you build, tune, and deploy ML models—whether you need full control (custom training), speed (AutoML), or SQL-based simplicity (BigQuery ML). Real-world scenario: A retail chain wants to predict customer churn. Analysts use BigQuery ML to train a logistic regression model directly on transaction data (no code), while data scientists fine-tune a Vertex AI Custom Training job with PyTorch for higher accuracy. Meanwhile, marketers use AutoML Tables to quickly deploy a model without writing code.
tf.distribute.Strategy
DataParallel
CREATE MODEL
gcloud
n1-standard-4
n1-standard-16
gcloud ai custom-jobs create
sql CREATE MODEL `project.dataset.churn_model` OPTIONS( model_type='LOGISTIC_REG', input_label_cols=['churned'] ) AS SELECT * FROM `project.dataset.customer_data`;
ML.EVALUATE
sql SELECT * FROM ML.EVALUATE(MODEL `project.dataset.churn_model`);
ML.PREDICT
sql SELECT * FROM ML.PREDICT(MODEL `project.dataset.churn_model`, (SELECT * FROM `project.dataset.new_customers`));
A retail company wants to predict customer churn using a logistic regression model on a BigQuery table. The team consists of SQL analysts with no Python experience. Which GCP service should they use? - A) Vertex AI AutoML Tables - B) Vertex AI Custom Training - C) BigQuery ML - D) Vertex AI Workbench
Answer: C) BigQuery ML – Best for SQL users training models directly on BigQuery data.
A data scientist needs to fine-tune a PyTorch model with distributed training across 4 GPUs. Which GCP service should they use? - A) Vertex AI AutoML - B) Vertex AI Custom Training - C) BigQuery ML - D) Vertex AI Workbench
Answer: B) Vertex AI Custom Training – Supports custom containers, distributed training, and GPU scaling.
A marketing team wants to quickly deploy a model to predict customer lifetime value (CLV) using a CSV file with 50K rows. They have no ML expertise. Which service should they use? - A) Vertex AI Custom Training - B) Vertex AI AutoML Tables - C) BigQuery ML - D) Vertex AI Pipelines
Answer: B) Vertex AI AutoML Tables – No-code solution for tabular data with one-click deployment.
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.