mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-03 14:18:14 -05:00
- Added standardized testing sections to modules 07_autograd and 08_optimizers - Updated module.yaml files to reference inline testing approach - Reorganized kernels module structure with proper testing placement - All 12 TinyTorch modules now have consistent testing framework - Fixed kernels module structure to match optimizers/training pattern
26 lines
698 B
YAML
26 lines
698 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" |