mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-02 08:32:31 -05:00
Reorganized Jupyter Book navigation from scattered sections to coherent ML systems progression: 🏗️ Foundation Tier (01-07): Core systems building blocks - Tensor, Activations, Layers, Losses, Autograd, Optimizers, Training - Universal ML computational primitives everyone needs 🧠 Intelligence Tier (08-13): Modern AI algorithms implementation - DataLoader, Spatial, Tokenization, Embeddings, Attention, Transformers - Core algorithms that define modern ML systems (not "applications") ⚡ Optimization Tier (14-19): Production systems engineering - KV-Caching, Profiling, Acceleration, Quantization, Compression, Benchmarking - Making intelligent algorithms fast, efficient, and scalable 🏅 Capstone Project (20): AI Olympics integration This mirrors real ML systems engineering roles and builds proper conceptual understanding for production ML systems work. Students need to understand the intelligence algorithms before they can optimize them effectively. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
92 lines
2.2 KiB
YAML
92 lines
2.2 KiB
YAML
# TinyTorch: Build ML Systems from Scratch
|
|
# Table of Contents Structure
|
|
|
|
format: jb-book
|
|
root: intro
|
|
title: "TinyTorch Course"
|
|
|
|
parts:
|
|
- caption: 🚀 Getting Started
|
|
chapters:
|
|
- file: quickstart-guide
|
|
title: "Quick Start Guide"
|
|
- file: usage-paths/classroom-use
|
|
title: "For Instructors"
|
|
|
|
- caption: 🛠️ Using TinyTorch
|
|
chapters:
|
|
- file: tito-essentials
|
|
title: "Essential Commands"
|
|
- file: learning-progress
|
|
title: "Track Your Progress"
|
|
|
|
- caption: 🧭 Course Orientation
|
|
chapters:
|
|
- file: chapters/00-introduction
|
|
title: "Introduction"
|
|
|
|
- caption: 🏗️ Foundation Tier (01-07)
|
|
chapters:
|
|
- file: chapters/01-tensor
|
|
title: "01. Tensor"
|
|
- file: chapters/02-activations
|
|
title: "02. Activations"
|
|
- file: chapters/03-layers
|
|
title: "03. Layers"
|
|
- file: chapters/04-losses
|
|
title: "04. Losses"
|
|
- file: chapters/05-autograd
|
|
title: "05. Autograd"
|
|
- file: chapters/06-optimizers
|
|
title: "06. Optimizers"
|
|
- file: chapters/07-training
|
|
title: "07. Training"
|
|
|
|
- caption: 🧠 Intelligence Tier (08-13)
|
|
chapters:
|
|
- file: chapters/08-dataloader
|
|
title: "08. DataLoader"
|
|
- file: chapters/09-spatial
|
|
title: "09. Spatial"
|
|
- file: chapters/10-tokenization
|
|
title: "10. Tokenization"
|
|
- file: chapters/11-embeddings
|
|
title: "11. Embeddings"
|
|
- file: chapters/12-attention
|
|
title: "12. Attention"
|
|
- file: chapters/13-transformers
|
|
title: "13. Transformers"
|
|
|
|
- caption: ⚡ Optimization Tier (14-19)
|
|
chapters:
|
|
- file: chapters/14-kvcaching
|
|
title: "14. KV Caching"
|
|
- file: chapters/15-profiling
|
|
title: "15. Profiling"
|
|
- file: chapters/16-acceleration
|
|
title: "16. Acceleration"
|
|
- file: chapters/17-quantization
|
|
title: "17. Quantization"
|
|
- file: chapters/18-compression
|
|
title: "18. Compression"
|
|
- file: chapters/19-benchmarking
|
|
title: "19. Benchmarking"
|
|
|
|
- caption: 🏅 Capstone Project
|
|
chapters:
|
|
- file: chapters/20-capstone
|
|
title: "20. AI Olympics"
|
|
|
|
- caption: 🌍 Community
|
|
chapters:
|
|
- file: community
|
|
title: "Ecosystem"
|
|
|
|
- caption: 🛠️ Resources & Tools
|
|
chapters:
|
|
- file: checkpoint-system
|
|
title: "Progress Tracking"
|
|
- file: testing-framework
|
|
title: "Testing Guide"
|
|
- file: resources
|
|
title: "Additional Resources" |