Files
TinyTorch/book/_toc.yml
Vijay Janapa Reddi b8afa61e07 📚 Add comprehensive Learning Resources page and update TOC structure
📖 New Resources Page:
- Created book/resources.md with curated external learning materials
- Academic courses: Stanford CS329S, Harvard ML Systems, MIT TinyML
- Essential books: Chip Huyen, Andriy Burkov, Deep Learning textbook
- Framework deep dives: PyTorch/TensorFlow internals and architecture
- Research papers: Autograd, Adam, Attention, TensorFlow/PyTorch papers
- Implementation guides: micrograd, tinygrad, Neural Networks from Scratch
- Communities: MLOps, r/MachineLearning, technical blogs
- Next steps: Post-TinyTorch learning paths and advanced specializations

🔄 Updated Table of Contents:
- Fixed module names: networks → dense, cnn → spatial
- Added 07_attention to Building Blocks section
- Updated all numbering to reflect 16-module structure
- Renamed 'Production & Performance' → 'Inference & Serving'
- Added new 'Additional Resources' section with 📚 Learning Resources

🎯 Educational Value:
- Provides context for TinyTorch implementations
- Bridges from educational framework to production systems
- Offers multiple learning paths for different interests
- Connects TinyTorch concepts to broader ML systems ecosystem

Result: Students now have comprehensive resources to deepen their
understanding and apply TinyTorch knowledge to real-world systems.
2025-07-18 08:55:51 -04:00

71 lines
1.6 KiB
YAML

# TinyTorch: Build ML Systems from Scratch
# Table of Contents Structure
format: jb-book
root: intro
title: "TinyTorch Course"
parts:
- caption: Usage Paths
chapters:
- file: usage-paths/quick-exploration
title: "🔬 Quick Exploration"
- file: usage-paths/serious-development
title: "🏗️ Serious Development"
- file: usage-paths/classroom-use
title: "👨‍🏫 Classroom Use"
- caption: Foundation
chapters:
- file: chapters/01-setup
title: "1. Setup"
- file: chapters/02-tensor
title: "2. Tensors"
- file: chapters/03-activations
title: "3. Activations"
- caption: Building Blocks
chapters:
- file: chapters/04-layers
title: "4. Layers"
- file: chapters/05-dense
title: "5. Dense"
- file: chapters/06-spatial
title: "6. Spatial"
- file: chapters/07-attention
title: "7. Attention"
- caption: Training Systems
chapters:
- file: chapters/08-dataloader
title: "8. DataLoader"
- file: chapters/09-autograd
title: "9. Autograd"
- file: chapters/10-optimizers
title: "10. Optimizers"
- file: chapters/11-training
title: "11. Training"
- caption: Inference & Serving
chapters:
- file: chapters/12-compression
title: "12. Compression"
- file: chapters/13-kernels
title: "13. Kernels"
- file: chapters/14-benchmarking
title: "14. Benchmarking"
- file: chapters/15-mlops
title: "15. MLOps"
- caption: Capstone Project
chapters:
- file: chapters/16-capstone
title: "16. Capstone"
- caption: Additional Resources
chapters:
- file: resources
title: "📚 Learning Resources"