mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-03 05:33:15 -05:00
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:
31
archive/setup_module/module.yaml
Normal file
31
archive/setup_module/module.yaml
Normal 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"
|
||||
Reference in New Issue
Block a user