mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-03 05:20:57 -05:00
- Rename complete modules to numbered progression: - setup → 00_setup - tensor → 01_tensor - activations → 02_activations - layers → 03_layers - networks → 04_networks - dataloader → 05_dataloader - Update test imports to use new numbered module names - Keep incomplete modules (autograd, training, etc.) unnumbered - Clear progression: 6 complete modules ready for students - Maintains rock solid foundation approach with proper imports
26 lines
544 B
YAML
26 lines
544 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "layers"
|
|
title: "Layers"
|
|
description: "Neural network layers (Linear, activation layers)"
|
|
|
|
# Dependencies
|
|
dependencies:
|
|
prerequisites: ["setup", "tensor", "activations"]
|
|
enables: ["networks", "training"]
|
|
|
|
# Package Export
|
|
exports_to: "tinytorch.core.layers"
|
|
|
|
# File Structure
|
|
files:
|
|
dev_file: "layers_dev.py"
|
|
test_file: "tests/test_layers.py"
|
|
readme: "README.md"
|
|
|
|
# Components
|
|
components:
|
|
- "Linear"
|
|
- "Activation"
|
|
- "Sequential" |