GCP Prep
Browse all topics
AI & Machine Learning4 min readUpdated August 28, 2026

Vertex AI and the ML Platform

In one sentence

Vertex AI is the managed platform where models are trained, deployed, monitored and retrained, so an experiment can become something that runs reliably.

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

  1. 1Data preparation — validate, clean and engineer features
  2. 2Feature store — features written once and read identically by training and serving
  3. 3Training — reproducible jobs producing a versioned model artefact
  4. 4Evaluation — compare against the current production model on held-out data
  5. 5Deployment — release to an endpoint gradually, splitting traffic between versions
  6. 6Monitoring — watch inputs for drift and predictions for degradation
  7. 7Retraining — triggered by a schedule, a drift signal, or a quality threshold
Continuous training closes the loop from monitoring back to retraining.

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.

Practice questions

AI & Machine Learning practice questions

7 original questions with full explanations.