Major reorganization: Remove setup module, renumber all modules, add tito setup command and numeric shortcuts

- Removed 01_setup module (archived to archive/setup_module)
- Renumbered all modules: tensor is now 01, activations is 02, etc.
- Added tito setup command for environment setup and package installation
- Added numeric shortcuts: tito 01, tito 02, etc. for quick module access
- Fixed view command to find dev files correctly
- Updated module dependencies and references
- Improved user experience: immediate ML learning instead of boring setup
This commit is contained in:
Vijay Janapa Reddi
2025-09-28 07:02:08 -04:00
parent 7c0d6f66c4
commit 4aec4ba297
137 changed files with 1266 additions and 764 deletions

View File

@@ -0,0 +1,31 @@
# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "setup"
title: "Setup & Environment"
description: "Development environment setup and basic TinyTorch functionality"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: []
enables: ["tensor", "activations", "layers"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.setup"
# File Structure - What files exist in this module
files:
dev_file: "setup_dev.py"
readme: "README.md"
tests: "inline"
# Educational Metadata
difficulty: "⭐"
time_estimate: "1-2 hours"
# Components - What's implemented in this module
components:
- "personal_info"
- "system_info"
- "setup_health"
- "DeveloperProfile"