mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-02 02:29:16 -05:00
Streamlined to show essential workflow commands only. Students populate modules/ via CLI exports from src/.
27 lines
616 B
Markdown
27 lines
616 B
Markdown
# TinyTorch Modules
|
|
|
|
Your workspace for building ML systems from scratch.
|
|
|
|
## 🚀 Getting Started
|
|
|
|
```bash
|
|
tito module start 01 # Start Module 01: Tensors
|
|
```
|
|
|
|
This creates the module folder and opens Jupyter Lab.
|
|
|
|
## 📋 Workflow
|
|
|
|
1. `tito module start XX` - Create and start a module
|
|
2. Work in Jupyter Lab - Build your implementation
|
|
3. `tito module complete XX` - Test and export your work
|
|
|
|
## 📊 Progress
|
|
|
|
```bash
|
|
tito module status # View your progress
|
|
tito module list # See all available modules
|
|
```
|
|
|
|
Each module builds on previous ones. Complete them in order to build your ML framework!
|