Google Cloud

Vertex AI AutoML 完全ガイド|Tables・Vision・NL・Video・Forecasting

2026-05-24
NicheeLab編集部

Vertex AI AutoML は GCP のノーコード機械学習サービスで、画像・動画・テキスト・表データに対する分類・検出・予測モデルを自動構築できます。 ML 専門知識がないチームでも本番品質のモデルを構築・デプロイ可能で、データサイエンティスト不足の補完として注目されています。

AutoML タスク一覧

タスクサブタスク用途
Tables (Tabular Workflow)分類 / 回帰 / Forecasting顧客チャーン、需要予測
Vision画像分類 / 物体検出 / セグメンテーション商品識別、欠陥検出
Video動画分類 / アクション認識 / 物体追跡監視カメラ、スポーツ解析
Natural Language分類 / 感情分析 / エンティティ抽出レビュー分析、文書分類
Translationカスタム翻訳モデル業界専門翻訳
Recommendationsレコメンドモデル (Discovery Engine)EC レコメンド

典型的なフロー

  1. データ準備 (CSV / 画像フォルダ / JSONL)
  2. Dataset 作成 (Vertex AI Console)
  3. ラベリング (Data Labeling Service 利用も可)
  4. AutoML Training 開始 (タスク選択 + Budget 設定)
  5. 評価指標確認 (Precision / Recall / Confusion Matrix)
  6. Endpoint デプロイ (1-Click)
  7. 本番推論

AutoML Tables 例

from google.cloud import aiplatform as ai

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

# Dataset 作成 (BigQuery テーブルから)
dataset = ai.TabularDataset.create(
    display_name="customer-churn",
    bq_source="bq://my-project.dataset.customers",
)

# 学習ジョブ
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
)

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

料金例 (us-central1, 2026)

タスク学習 ($/h)予測 ($/h or $/M)
Tables (Classification/Regression)$21.25$1.39/M リクエスト
Tables Forecasting$21.25$1.39/M
Image Classification$3.15n1-standard-2 時間
Image Object Detection$18.00n1-standard-2 時間
Video Classification$0.46/M frame$0.10/分
Text Classification$1.05$5/1000 page

BigQuery ML との使い分け

項目AutoMLBigQuery ML
インターフェースGUI + SDKSQL のみ
対応データ構造化 + 非構造化構造化 (BQ テーブル)
モデルタイプAutoML 全般線形 / 木 / k-means / AutoML
デプロイVertex EndpointBQ 内推論 + Vertex Export
学習コストノード時間スキャン量

他クラウド AutoML 比較

項目Vertex AutoMLSageMaker AutopilotAzure ML AutoML
表データ
画像
動画
NL
説明可能性Feature Importance + Vertex Explainable AISHAPResponsible AI Toolkit

典型的なユースケース

  • EC: 商品画像の自動分類 + タグ付け
  • 金融: 顧客チャーン予測 (Tables)
  • 製造: 検品画像の欠陥検出 (Vision)
  • カスタマーサポート: 問い合わせ分類 (NL)
  • 動画配信: コンテンツ分類 (Video)
  • 小売: 売上 Forecasting (Tabular Workflow)

AutoML とは?

コード不要で機械学習モデルを構築・デプロイできる Vertex AI 機能。データアップロード → 自動特徴量エンジニアリング → モデル選定 → ハイパラ最適化 → デプロイまで自動。

AutoML の対応タスクは?

AutoML Tables (構造化)、AutoML Vision (画像分類・物体検出)、AutoML Video (動画分類)、AutoML Natural Language (テキスト分類・感情分析・エンティティ抽出)、AutoML Translation。

BigQuery ML との違いは?

AutoML は GUI 完結 + Vertex Endpoint デプロイ、BigQuery ML は SQL で完結。データが BQ にあるなら BigQuery ML 推奨、非構造化データなら AutoML。

Forecasting (時系列予測) は?

AutoML Forecasting で売上・需要予測など対応。Tabular Workflow 経由で自動特徴量生成 + アンサンブル。

料金体系は?

ノード時間ベース。Image classification = $3.15/h、Object detection = $18/h など。Vertex AI Tabular Workflow も同様。

Fine-tuning とどう違う?

AutoML = 自前データから完全に新規モデル学習、Fine-tuning = 既存モデル (Gemini / Llama 等) を微調整。タスクによって使い分け。

AWS SageMaker Autopilot との比較は?

両方とも AutoML。Vertex AutoML は画像・動画など非構造化にも対応、SageMaker Autopilot は表データ中心。

Vertex AI Workbench との連携は?

Workbench (Notebook) で AutoML をプログラム呼び出し可能。GUI + コードのハイブリッド利用が現実的。

関連記事・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 は Google LLC の商標です。最新情報は AutoML 公式 をご確認ください。

この記事で学んだ内容を問題で確認しましょう

16,000問以上の問題で実力チェック

GCP 試験対策ページを見る
この記事の著者

NicheeLab編集部

データエンジニアリング・クラウド資格の専門家。Databricks・Snowflake等の認定資格を保有し、実務経験に基づいた問題作成・解説を行っています。NicheeLab運営。


関連記事
Google Cloud

Google Cloud (GCP) 認定資格ロードマップ 2026 完全版|全 15 試験を体系化

Google Cloud 認定資格 全 15 試験 (Foundational 2 + Associate 3 + Pr...

Google Cloud

Cloud Digital Leader (CDL) 完全ガイド|出題範囲・学習リソース・合格戦略

Google Cloud Cloud Digital Leader (CDL) の完全ガイド。6 ドメイン 92 bul...

Google Cloud

Generative AI Leader (GAIL) 完全ガイド|Google Cloud 生成 AI 認定

Google Cloud Generative AI Leader (GAIL、2025-05-14 リリース) の完全...

Google Cloud

Vertex AI 入門|Google Cloud 統合 ML プラットフォームの全機能

Google Cloud Vertex AI の入門解説。Vertex AI Studio / Agent Builde...

Google Cloud

GCP Associate Cloud Engineer (ACE) 完全ガイド|試験範囲・受験料・学習ロードマップ

Google Cloud Associate Cloud Engineer (ACE) の試験範囲・受験料 125 US...

Google Cloudの記事一覧 (102件)
© 2026 NicheeLab All rights reserved.