Google Cloud

Vertex AI AutoML Complete Guide: Tables, Vision, NL, Video, Forecasting

2026-05-24
NicheeLab Editorial Team

Vertex AI AutoML is GCP's no-code machine learning service. It can automatically build classification, detection, and prediction models for images, video, text, and tabular data. Teams without deep ML expertise can deliver production-quality models, making it an attractive way to compensate for data scientist shortages.

AutoML Task Catalog

TaskSub-tasksUse cases
Tables (Tabular Workflow)Classification / Regression / ForecastingCustomer churn, demand forecasting
VisionImage classification / Object detection / SegmentationProduct identification, defect detection
VideoVideo classification / Action recognition / Object trackingSurveillance cameras, sports analytics
Natural LanguageClassification / Sentiment analysis / Entity extractionReview analysis, document classification
TranslationCustom translation modelsIndustry-specific translation
RecommendationsRecommendation models (Discovery Engine)E-commerce recommendations

Typical Workflow

  1. Data preparation (CSV / image folders / JSONL)
  2. Create a Dataset (Vertex AI Console)
  3. Labeling (Data Labeling Service is an option)
  4. Start AutoML training (pick a task and set a budget)
  5. Review evaluation metrics (Precision / Recall / Confusion Matrix)
  6. Deploy to an Endpoint (1-click)
  7. Production inference

AutoML Tables Example

from google.cloud import aiplatform as ai

ai.init(project="my-project", location="asia-northeast1")

# Create a Dataset (from a BigQuery table)
dataset = ai.TabularDataset.create(
    display_name="customer-churn",
    bq_source="bq://my-project.dataset.customers",
)

# Training job
job = ai.AutoMLTabularTrainingJob(
    display_name="churn-model",
    optimization_prediction_type="classification",
    optimization_objective="maximize-au-roc",
)
model = job.run(
    dataset=dataset,
    target_column="churned",
    budget_milli_node_hours=1000,  # 1 node-hour
)

# Deploy
endpoint = model.deploy(machine_type="n1-standard-4")
result = endpoint.predict(instances=[{"age": 30, "plan": "premium"}])

Pricing Examples (us-central1, 2026)

TaskTraining ($/h)Prediction ($/h or $/M)
Tables (Classification/Regression)$21.25$1.39 per million requests
Tables Forecasting$21.25$1.39/M
Image Classification$3.15n1-standard-2 hours
Image Object Detection$18.00n1-standard-2 hours
Video Classification$0.46/M frame$0.10/minute
Text Classification$1.05$5/1000 page

AutoML vs. BigQuery ML

AspectAutoMLBigQuery ML
InterfaceGUI + SDKSQL only
Supported dataStructured + unstructuredStructured (BigQuery tables)
Model typesFull AutoML lineupLinear / Tree / k-means / AutoML
DeploymentVertex EndpointIn-BQ inference + Vertex Export
Training costNode-hoursData scanned

AutoML Comparison Across Clouds

AspectVertex AutoMLSageMaker AutopilotAzure ML AutoML
Tabular dataExcellentExcellentExcellent
ImageExcellentGood
VideoExcellent
NLExcellentGood
ExplainabilityFeature Importance + Vertex Explainable AISHAPResponsible AI Toolkit

Typical Use Cases

  • E-commerce: automatic product image classification and tagging
  • Finance: customer churn prediction (Tables)
  • Manufacturing: defect detection on inspection images (Vision)
  • Customer support: inquiry classification (NL)
  • Video streaming: content classification (Video)
  • Retail: sales forecasting (Tabular Workflow)

What is AutoML?

A Vertex AI feature that lets you build and deploy machine learning models without code. The flow is fully automated: data upload → automatic feature engineering → model selection → hyperparameter tuning → deployment.

Which tasks does AutoML support?

AutoML Tables (structured data), AutoML Vision (image classification and object detection), AutoML Video (video classification), AutoML Natural Language (text classification, sentiment analysis, entity extraction), and AutoML Translation.

How does it differ from BigQuery ML?

AutoML is GUI-driven with Vertex Endpoint deployment, while BigQuery ML stays entirely in SQL. If your data already lives in BigQuery, prefer BigQuery ML; for unstructured data, go with AutoML.

What about forecasting (time-series prediction)?

AutoML Forecasting handles sales and demand prediction. The Tabular Workflow automatically generates features and uses ensembling.

What is the pricing model?

Node-hour based. For example, image classification is $3.15/h and object detection is $18/h. Vertex AI Tabular Workflow follows the same model.

How is this different from fine-tuning?

AutoML trains a brand-new model from your own data, while fine-tuning adjusts an existing model (Gemini, Llama, etc.). Choose based on the task.

How does it compare to AWS SageMaker Autopilot?

Both are AutoML offerings. Vertex AutoML covers unstructured data like images and video, whereas SageMaker Autopilot is centered on tabular data.

How does it integrate with Vertex AI Workbench?

You can call AutoML programmatically from Workbench (Notebook). In practice, a hybrid GUI + code workflow works best.

Related Articles: AutoML / Vertex AI

Vision AI Complete Guide (2026)

Vision AI features — Vision API, AutoML Vision, Document AI. The vision stack on GCP.

Vertex AI Agent Builder Detailed Guide (2026)

Agent Builder — Conversational Agents, Agent Engine, data stores. The agent platform on GCP.

GAIL Generative AI Leader: Complete Exam Guide (2026)

Pass the Generative AI Leader exam — Gemini, Vertex AI, Workspace AI for business leaders.

Vertex AI Fundamentals for GCP Certs (2026)

Vertex AI basics every cert candidate needs — Workbench, Pipelines, Model Garden, Endpoints.

* Google Cloud is a trademark of Google LLC. For the latest information, see the official AutoML documentation.

Check what you learned with practice questions

Practice with certification-focused question sets

View GCP exam prep page
Author

NicheeLab Editorial Team

NicheeLab editorial team focused on data engineering and cloud certification learning. Content is structured around practical study needs and official exam domains.


Related articles
Google Cloud

Google Cloud Certification Roadmap (2026)

Choose your GCP certification path — Foundational, Associate...

Google Cloud

CDL Cloud Digital Leader: Complete Exam Guide (2026)

Pass the Cloud Digital Leader exam — cloud business value, G...

Google Cloud

GAIL Generative AI Leader: Complete Exam Guide (2026)

Pass the Generative AI Leader exam — Gemini, Vertex AI, Work...

Google Cloud

Vertex AI Fundamentals for GCP Certs (2026)

Vertex AI basics every cert candidate needs — Workbench, Pip...

Google Cloud

Associate Cloud Engineer (ACE): Complete Guide (2026)

Pass the Associate Cloud Engineer exam — Console, gcloud, pr...

Browse all Google Cloud articles (103)
© 2026 NicheeLab All rights reserved.