mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-01 00:38:35 -05:00
- 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
31 lines
795 B
YAML
31 lines
795 B
YAML
# 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" |