Don't import it. Build it.
Build your own ML framework — from tensors to systems.
Preview · Classroom ready Fall 2026
An educational framework for building and optimizing ML — understand how PyTorch, TensorFlow, and JAX really work.
TinyTorch is usable today for self-paced learning and active course pilots. APIs, instructor packaging, and classroom workflows will continue to stabilize through the Fall 2026 classroom release.
Recreate ML History
Walk through ML history by rebuilding its greatest breakthroughs with YOUR TinyTorch implementations. Click each milestone to see what you’ll build and how it shaped modern AI.
Why Build Instead of Use?
"Building systems creates irreversible understanding."
Traditional ML Education
import torch
model = torch.nn.Linear(784, 10)
output = model(input)
# When this breaks, you're stuckProblem: You can’t debug what you don’t understand.
TinyTorch: Build → Use → Reflect
# BUILD it yourself
class Linear:
def forward(self, x):
return x @ self.weight + self.bias
# USE it on real data
loss.backward() # YOUR autogradAdvantage: You can debug it because you built it.
Learning Path
Four progressive tiers take you from foundations to production systems:
Is This For You?
🎓 Students
Taking ML courses, want to understand what’s behind import torch
👩🏫 Instructors
Teaching ML systems with ready-made hands-on labs
🚀 Self-learners
Career changers or hobbyists going deeper than tutorials
Prerequisites: Python + basic linear algebra. No ML experience required.
Join the Community
See learners building ML systems worldwide
Add yourself to the map · Share your progress · Connect with builders
Part of the MLSysBook project — every ⭐ helps support free ML education
Next Steps: Quick Start (15 min) | The Big Picture | Community