mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-03-12 12:23:49 -05:00
Standardize module structure to ensure correct section ordering: - if __name__ block → ML Systems Thinking → Module Summary (always last) Fixed 10 modules with incorrect ordering: • 02_tensor, 04_layers, 05_dense, 06_spatial • 08_dataloader, 09_autograd, 10_optimizers, 11_training • 12_compression (consolidated 3 scattered if blocks) • 15_mlops (consolidated 6 scattered if blocks) All 17 modules now follow consistent structure: 1. Content and implementations 2. Main execution block (if __name__) 3. ML Systems Thinking Questions 4. Module Summary (always last section) Updated CLAUDE.md with explicit ordering requirements to prevent future issues.