Agentic Learning StudioGenerate your own lesson →
AI and Machine Learning Foundations

Foundations · Guide

AI and Machine Learning Foundations

The groundwork under LLMs — ML types, neural networks, backprop, gradient descent, embeddings.

Before large language models there is machine learning: models that learn patterns from data rather than following hand-written rules. This guide covers AI vs machine learning vs deep learning, supervised, unsupervised and reinforcement learning, neural networks and backpropagation, gradient descent, embeddings, and the bias-variance tradeoff.

Generate your own lesson →

What you'll learn

Lessons in this guide (10)

Frequently asked questions

What's the difference between AI, machine learning, and deep learning?

AI is the broad goal of machines doing intelligent tasks. Machine learning is the subset that learns from data. Deep learning is the subset of ML using many-layered neural networks — the basis of modern LLMs.

What is a neural network?

A neural network is layers of simple units ('neurons') with weighted connections that transform inputs into outputs. Training adjusts the weights so the network maps inputs to the right outputs.

What is supervised learning?

Supervised learning trains a model on labeled examples (input → known answer) so it learns to predict the answer for new inputs. Classification and regression are the two main kinds.

Other guides