Files
TinyTorch/modules/source/05_dense/module.yaml
Vijay Janapa Reddi 442e860d5f Fix module file naming and tensor assignment issues
- Updated module.yaml files for 05_dense and 06_spatial to reference correct dev file names
- Fixed #| default_exp directives in dense_dev.py and spatial_dev.py to export to correct module names
- Fixed tensor assignment issues in 12_compression module by creating new Tensor objects instead of trying to assign to .data property
- Removed missing function imports from autograd integration test
- All individual module tests now pass (01_setup through 14_benchmarking)
- Generated correct module files: dense.py, spatial.py, attention.py
2025-07-18 01:56:07 -04:00

30 lines
799 B
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "dense"
title: "Dense Networks"
description: "Multi-layer dense (fully connected) neural networks and MLPs"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: ["setup", "tensor", "activations", "layers"]
enables: ["spatial", "attention", "training"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.dense"
# File Structure - What files exist in this module
files:
dev_file: "dense_dev.py"
readme: "README.md"
tests: "inline"
# Educational Metadata
difficulty: "⭐⭐⭐"
time_estimate: "5-6 hours"
# Components - What's implemented in this module
components:
- "Sequential"
- "create_mlp"
- "MLP"