mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-25 09:42:05 -05:00
- Remove student-facing bloat (learning objectives, time estimates, pedagogical details) - Remove assessment sections (not needed for operational metadata) - Streamline to essential system information only: - Module identification and dependencies - Package export configuration - File structure and component listings - Updated existing files (6): setup, tensor, activations, layers, autograd, optimizers - Created missing files (3): networks, cnn, dataloader - Consistent 25-26 line format across all 9 modules Result: Pure operational metadata for CLI tools and build systems Perfect for instructor/staff development workflow
26 lines
704 B
YAML
26 lines
704 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 - Used by CLI for module ordering and prerequisites
|
|
dependencies:
|
|
prerequisites: ["setup", "tensor", "activations"]
|
|
enables: ["networks", "training"]
|
|
|
|
# Package Export - What gets built into tinytorch package
|
|
exports_to: "tinytorch.core.layers"
|
|
|
|
# File Structure - What files exist in this module
|
|
files:
|
|
dev_file: "layers_dev.py"
|
|
test_file: "tests/test_layers.py"
|
|
readme: "README.md"
|
|
|
|
# Components - What's implemented in this module
|
|
components:
|
|
- "Dense"
|
|
- "Linear"
|
|
- "matmul_naive" |