mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-08 00:57:31 -05:00
PERFECT WORKFLOW: Clean lifecycle commands with distinct purposes New Commands (No Overlaps): ✅ tito module start 01 → Start working on module (first time only) ✅ tito module resume 01 → Resume working on module (continue work) ✅ tito module complete 01 → Complete module (test + export) ✅ tito module status → Show progress with 3 states Smart Features: ✅ State tracking: ⏳ not started → 🚀 in progress → ✅ completed ✅ Smart validation: start checks if already started, suggests resume ✅ Smart defaults: resume/complete work without module number ✅ Progress persistence: JSON file tracks started/completed modules ✅ Clear guidance: Always shows next logical step User Journey: 1. tito setup → Environment setup 2. tito module start 01 → Begin tensors (marks as started) 3. Work in Jupyter, save → Natural development 4. tito module complete 01 → Test, export, mark completed 5. tito module start 02 → Begin activations 6. tito module resume 02 → Continue activations later No command overlaps - each has distinct purpose and clear mental model!
11 lines
175 B
JSON
11 lines
175 B
JSON
{
|
|
"completed_modules": [
|
|
"01"
|
|
],
|
|
"last_completed": "01",
|
|
"last_updated": "2025-09-28T07:57:44.694673",
|
|
"started_modules": [
|
|
"01"
|
|
],
|
|
"last_worked": "01"
|
|
} |