PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #167
You need to build classification workflows over several structured datasets currently stored in BigQuery. Because you will be performing the classification several times, you want to complete the foll
The correct answer is B. Train a classification Vertex AutoML model.. To build classification workflows on structured BigQuery data without writing code, covering EDA, feature selection, model building, training, hyperparameter tuning, and serving, Vertex AutoML for Tabular Data is the ideal solution.
Question
Options
- ATrain a TensorFlow model on Vertex AI.
- BTrain a classification Vertex AutoML model.
- CRun a logistic regression job on BigQuery ML.
- DUse scikit-learn in Vertex AI Workbench user-managed notebooks with pandas library.
How the community answered
(29 responses)- A3% (1)
- B93% (27)
- C3% (1)
Why each option
To build classification workflows on structured BigQuery data without writing code, covering EDA, feature selection, model building, training, hyperparameter tuning, and serving, Vertex AutoML for Tabular Data is the ideal solution.
Training a TensorFlow model on Vertex AI requires significant coding expertise for model building, feature engineering, and pipeline orchestration, which goes against the requirement of "without writing code."
Vertex AutoML for Tabular Data is specifically designed for this scenario: it automates the entire ML workflow, including exploratory data analysis, feature engineering (implicitly), model architecture search, training, hyperparameter tuning, and deployment, all without requiring users to write any code for these steps. It directly integrates with BigQuery for data input.
While BigQuery ML allows for training models directly in BigQuery with SQL, it still requires SQL queries to define the model and features, and it doesn't provide comprehensive automated EDA, feature selection, or advanced hyperparameter tuning without manual intervention.
Using scikit-learn in Vertex AI Workbench notebooks with pandas requires extensive Python coding for every step of the ML workflow, directly contradicting the requirement of "without writing code."
Concept tested: No-code/low-code ML with Vertex AutoML
Source: https://cloud.google.com/vertex-ai/docs/tabular-data/introduction
Topics
Community Discussion
No community discussion yet for this question.