HarmonyFidelisHarmonyFidelis
Iniciar sesión
Fundamentos de IACómo funcionan los LLMCompetencias LLMEvaluaciónGlosarioConfigurador
Academia Aura

Sección 1 · Fundamentos

IA, aprendizaje automático y deep learning

La IA es el campo general. El ML aprende patrones de los datos y el deep learning emplea redes neuronales en capas. Un producto útil es un sistema mayor alrededor del modelo.

Principiante20 minutos

Al terminar podrás

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

Cinco fundamentos

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.

Confusiones frecuentes

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

Palabras clave

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

Fuentes primarias y oficiales

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.
Siguiente: Cómo funcionan los LLM