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.

五项基础

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 如何工作