Vertex AI and the ML Platform
In one sentence
What it is
Vertex AI brings the stages of a machine learning workflow into one managed platform: preparing data, training models, evaluating them, deploying them for prediction, orchestrating the whole thing as a pipeline, and monitoring what happens afterwards.
It supports several levels of involvement — automated training that handles model selection for you, custom training where you supply the code, and access to pre-trained foundation models you call directly.
Why it matters
The difficulty in machine learning is rarely training a model that works in a notebook. It is everything after: reproducing the result, serving it at acceptable latency, keeping training and serving features consistent, retraining when data shifts, and noticing when quality degrades.
This is the MLOps problem, and it is where the ML Engineer exam spends most of its attention. Treating it as a modelling exam is the most common preparation mistake.
Key concepts
- Training job — running your training code on managed infrastructure, optionally distributed across machines or accelerators.
- Automated training — the platform handles model selection and tuning from a dataset. A strong baseline and often sufficient for tabular problems.
- Model registry — versioned storage for trained models, with the metadata needed to know how each was produced.
- Endpoint — a deployed model serving online predictions, with autoscaling and traffic splitting between versions.
- Batch prediction — scoring a large dataset offline, without a persistent endpoint. Cheaper when latency does not matter.
- Feature store — a central place for features, so training and serving compute them identically. This is what prevents training–serving skew.
- Pipelines — orchestrated, reproducible workflows chaining data preparation, training, evaluation and deployment.
- Model monitoring — watching production inputs and predictions for drift and skew, triggering alerts or retraining.
- Explainability — attributing a prediction to its contributing features, which is often a regulatory requirement.
A production ML workflow
- 1Data preparation — validate, clean and engineer features
- 2Feature store — features written once and read identically by training and serving
- 3Training — reproducible jobs producing a versioned model artefact
- 4Evaluation — compare against the current production model on held-out data
- 5Deployment — release to an endpoint gradually, splitting traffic between versions
- 6Monitoring — watch inputs for drift and predictions for degradation
- 7Retraining — triggered by a schedule, a drift signal, or a quality threshold
Common use cases
- Training a custom model on data too large for a single machine.
- Serving low-latency predictions inside a user-facing request.
- Scoring a large dataset in batch on a nightly schedule.
- Automating retraining when monitoring detects drift.
- Sharing consistent features across several models and teams.
- Building on foundation models with tuning and grounding rather than training from scratch.
Certification relevance
Where this topic appears, and how deeply each exam goes into it. These are our own assessments based on published exam guides.
- Professional Machine Learning Engineer
The centre of the exam. Pipelines, serving, feature consistency and monitoring carry the most weight.
- Generative AI Leader
Conceptual understanding of the platform layers and where foundation models fit.
- Professional Data Engineer
Where the data platform hands off to machine learning, and what feature engineering must deliver.
Practice questions
AI & Machine Learning practice questions
7 original questions with full explanations.
Related Certifications
Related Cloud Topics
- Machine Learning FundamentalsThe concepts every ML question assumes: training, evaluation metrics, overfitting, and knowing when not to use machine learning.
- Generative AIFoundation models, prompting, grounding, retrieval augmentation and evaluation — and choosing the right technique for a failure.
- BigQueryA serverless analytics warehouse: partitioning, clustering, the cost model, and how to make queries fast and cheap.
- CI/CD and Build AutomationHow source code becomes a running service safely: pipelines, artefacts, quality gates and progressive rollout strategies.