HarmonyFidelisHarmonyFidelis
Anmelden
KI-GrundlagenLLM-FunktionsweiseLLM-EngineeringEvaluationGlossarKonfigurator
Aura Akademie

Abschnitt 1 · Grundlagen

KI, Machine Learning und Deep Learning

KI ist das breite Feld. ML lernt Muster aus Daten; Deep Learning nutzt mehrschichtige neuronale Netze. Ein Produkt ist ein größeres System um das Modell.

Einstieg20 Minuten

Danach kannst du

  • 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.

Fünf Grundlagen

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.

Häufige Verwechslungen

  • 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.

Schlüsselbegriffe

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

Primäre und offizielle Quellen

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.
Weiter: Wie LLMs funktionieren