mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-01 23:32:08 -05:00
- Part I: Foundations (Modules 1-5) - Build MLPs, solve XOR - Part II: Computer Vision (Modules 6-11) - Build CNNs, classify CIFAR-10 - Part III: Language Models (Modules 12-17) - Build transformers, generate text Key changes: - Renamed 05_dense to 05_networks for clarity - Moved 08_dataloader to 07_dataloader (swap with attention) - Moved 07_attention to 13_attention (Part III) - Renamed 12_compression to 16_regularization - Created placeholder dirs for new language modules (12,14,15,17) - Moved old modules 13-16 to temp_holding for content migration - Updated README with three-part structure - Added comprehensive documentation in docs/three-part-structure.md This structure gives students three natural exit points with concrete achievements at each level.
30 lines
786 B
YAML
30 lines
786 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "dataloader"
|
|
title: "DataLoader"
|
|
description: "Dataset interfaces and data loading pipelines"
|
|
|
|
# Dependencies - Used by CLI for module ordering and prerequisites
|
|
dependencies:
|
|
prerequisites: ["setup", "tensor"]
|
|
enables: ["training", "dense", "spatial", "attention"]
|
|
|
|
# Package Export - What gets built into tinytorch package
|
|
exports_to: "tinytorch.core.dataloader"
|
|
|
|
# File Structure - What files exist in this module
|
|
files:
|
|
dev_file: "dataloader_dev.py"
|
|
readme: "README.md"
|
|
tests: "inline"
|
|
|
|
# Educational Metadata
|
|
difficulty: "⭐⭐⭐"
|
|
time_estimate: "5-6 hours"
|
|
|
|
# Components - What's implemented in this module
|
|
components:
|
|
- "Dataset"
|
|
- "DataLoader"
|
|
- "SimpleDataset" |