HarmonyFidelisHarmonyFidelis
ログイン
AIの基礎LLMの仕組みLLMスキル評価用語集ビルダー
Auraアカデミー

セクション1 · 基礎

AI・機械学習・深層学習

AIは広い分野です。機械学習はデータからパターンを学び、深層学習は多層ニューラルネットワークを使います。製品はモデルを囲むより大きなシステムです。

初級20分

学習目標

  • Distinguish AI, machine learning, deep learning, a model and a complete system.
  • Recognize supervised, self-supervised and reinforcement learning.
  • Choose a baseline before reaching for a large model.

5つの基礎

01

AI is a field, not one technology

AI includes rules, search, planning, optimization, probabilistic methods, machine learning and hybrids. The simplest adequate method is often the most reliable.

02

A model is not the product

A model maps inputs to outputs. A product also includes data, interfaces, permissions, monitoring, fallback and human decisions.

03

Learning means fitting from evidence

Supervised learning uses labelled examples; self-supervised learning creates learning signals from raw data; reinforcement learning uses rewards from interaction.

04

Deep learning learns representations

Layered neural networks transform inputs into increasingly useful internal features. Training adjusts parameters by following gradients that reduce a loss.

05

Generalization is the real test

Low training error is not enough. The model must perform on relevant unseen cases without leakage, shortcut learning or unacceptable group failures.

A compact learning loop

  1. 01

    Define task

  2. 02

    Collect evidence

  3. 03

    Train or configure

  4. 04

    Test unseen cases

  5. 05

    Monitor use

Rules, classical ML and deep learning can coexist. Architecture should follow the task, data, risk, latency and cost—not fashion.

よくある誤解

  • Calling every automation “AI” hides whether the system follows rules, searches, predicts or learns.
  • A benchmark score does not guarantee performance on your users, language, data or failure modes.
  • AGI and ASI are debated capability goals, not proven properties of current general-purpose models.

Practice: classify a system

Pick one AI feature you use and draw its actual pipeline.

  • Name the input, output, model or rule, and surrounding product components.
  • Identify what was learned, from which evidence, and what remains hand-coded.
  • State one unseen test and one simpler baseline.

Quick check

Is every AI system a deep-learning system?

No. AI also includes rules, search, planning, optimization, classical machine learning and hybrid systems.

Why is test performance more important than training performance?

Because useful systems must generalize to relevant cases they did not memorize during training.

What is the difference between a model and an AI product?

The model produces predictions; the product adds data flow, interface, permissions, checks, monitoring and recovery.

重要語

  • AI
  • algorithm
  • model
  • data
  • parameter
  • training
  • loss
  • gradient
  • generalization
  • overfitting

一次資料と公的資料

Deep Learning bookOpen reference by Goodfellow, Bengio and Courville on machine learning and deep learning foundations.NIST AI Risk Management FrameworkAuthoritative framework for governing, mapping, measuring and managing AI risks.
次へ: LLMの仕組み