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.
| Task | Sub-tasks | Use cases |
|---|---|---|
| Tables (Tabular Workflow) | Classification / Regression / Forecasting | Customer churn, demand forecasting |
| Vision | Image classification / Object detection / Segmentation | Product identification, defect detection |
| Video | Video classification / Action recognition / Object tracking | Surveillance cameras, sports analytics |
| Natural Language | Classification / Sentiment analysis / Entity extraction | Review analysis, document classification |
| Translation | Custom translation models | Industry-specific translation |
| Recommendations | Recommendation models (Discovery Engine) | E-commerce recommendations |
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"}])| Task | Training ($/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.15 | n1-standard-2 hours |
| Image Object Detection | $18.00 | n1-standard-2 hours |
| Video Classification | $0.46/M frame | $0.10/minute |
| Text Classification | $1.05 | $5/1000 page |
| Aspect | AutoML | BigQuery ML |
|---|---|---|
| Interface | GUI + SDK | SQL only |
| Supported data | Structured + unstructured | Structured (BigQuery tables) |
| Model types | Full AutoML lineup | Linear / Tree / k-means / AutoML |
| Deployment | Vertex Endpoint | In-BQ inference + Vertex Export |
| Training cost | Node-hours | Data scanned |
| Aspect | Vertex AutoML | SageMaker Autopilot | Azure ML AutoML |
|---|---|---|---|
| Tabular data | Excellent | Excellent | Excellent |
| Image | Excellent | — | Good |
| Video | Excellent | — | — |
| NL | Excellent | — | Good |
| Explainability | Feature Importance + Vertex Explainable AI | SHAP | Responsible AI Toolkit |
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 / Video Intelligence 完全ガイド|画像・動画解析 API (GCP)
Google Cloud Vision API / Video Intelligence / Vertex AI Vision の全機能解説。OCR、物体検出、顔認識、SafeSearch、AutoML Vision、Edge デプロイ、料金、AWS Rekognition / Azure CV 比較を網羅。
Vertex AI Agent Builder 完全ガイド|Conversational Agents・Vertex AI Search・Tool Use (GCP)
Google Cloud Vertex AI Agent Builder の全機能解説。Conversational Agents (Dialogflow CX 後継)、Vertex AI Search、Tool Use、Grounding、Playbook、料金、ChatGPT GPTs / Copilot Studio 比較を網羅。
Generative AI Leader (GAIL) 完全ガイド|Google Cloud 生成 AI 認定 (2025 年 5 月リリース新試験)
Google Cloud Generative AI Leader (GAIL、2025-05-14 リリース) の完全ガイド。4 ドメイン (生成 AI 基礎 30% / GCP 提供サービス 35% / モデル出力改善 20% / ビジネス戦略 15%)、Gemini ファミリー、Vertex AI Agent Builder、RAG、ビジネス導入観点を日本語で網羅。
Vertex AI 入門|Google Cloud 統合 ML プラットフォームの全機能 (GAIL/PMLE/PCD 必須知識)
Google Cloud Vertex AI の入門解説。Vertex AI Studio / Agent Builder / Model Garden / Search / Pipelines / Training の全機能、Gemini モデルファミリー (Pro/Flash/Ultra)、Azure OpenAI との比較、料金体系、Responsible AI 機能を日本語で整理。
* Google Cloud is a trademark of Google LLC. For the latest information, see the official AutoML documentation.
Practice with certification-focused question sets
View GCP exam prep pageNicheeLab Editorial Team
NicheeLab editorial team focused on data engineering and cloud certification learning. Content is structured around practical study needs and official exam domains.
Google Cloud Certification Roadmap (2026)
Choose your GCP certification path — Foundational, Associate...
CDL Cloud Digital Leader: Complete Exam Guide (2026)
Pass the Cloud Digital Leader exam — cloud business value, G...
GAIL Generative AI Leader: Complete Exam Guide (2026)
Pass the Generative AI Leader exam — Gemini, Vertex AI, Work...
Vertex AI Fundamentals for GCP Certs (2026)
Vertex AI basics every cert candidate needs — Workbench, Pip...
Associate Cloud Engineer (ACE): Complete Guide (2026)
Pass the Associate Cloud Engineer exam — Console, gcloud, pr...