mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-06 19:06:04 -05:00
✅ Rename all module directories: 00_setup → 01_setup, etc. ✅ Update convert_modules.py mappings for new directory names ✅ Update _toc.yml file paths and titles (1-14 instead of 0-13) ✅ Regenerate all overview pages with new numbering ✅ Fix all broken references in usage-paths and intro ✅ Update chapter references to use natural numbering Benefits: - More intuitive course progression starting from 1 - Matches academic course numbering conventions - Eliminates confusion about 'Module 0' concept - Cleaner mental model for students and instructors - All references and links properly updated Complete transformation: 14 modules now numbered 01-14
27 lines
724 B
YAML
27 lines
724 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "tensor"
|
|
title: "Tensor"
|
|
description: "Core tensor data structure and operations"
|
|
|
|
# Dependencies - Used by CLI for module ordering and prerequisites
|
|
dependencies:
|
|
prerequisites: ["setup"]
|
|
enables: ["activations", "layers", "autograd"]
|
|
|
|
# Package Export - What gets built into tinytorch package
|
|
exports_to: "tinytorch.core.tensor"
|
|
|
|
# File Structure - What files exist in this module
|
|
files:
|
|
dev_file: "tensor_dev.py"
|
|
test_file: "tests/test_tensor.py"
|
|
readme: "README.md"
|
|
|
|
# Components - What's implemented in this module
|
|
components:
|
|
- "Tensor"
|
|
- "tensor_creation"
|
|
- "tensor_operations"
|
|
- "tensor_arithmetic" |