Files
TinyTorch/modules/source/06_spatial/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
841 B
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "spatial"
title: "Spatial Networks"
description: "Convolutional networks for spatial pattern recognition and image processing"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: ["setup", "tensor", "activations", "layers", "dense"]
enables: ["attention", "training", "computer_vision"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.spatial"
# File Structure - What files exist in this module
files:
dev_file: "spatial_dev.py"
readme: "README.md"
tests: "inline"
# Educational Metadata
difficulty: "⭐⭐⭐"
time_estimate: "6-8 hours"
# Components - What's implemented in this module
components:
- "conv2d_naive"
- "Conv2D"
- "flatten"