Files
TinyTorch/modules/09_spatial/module.yaml
Vijay Janapa Reddi 6491a7512e Clean up repository: remove temp files, organize modules, prepare for PyPI publication
- Removed temporary test files and audit reports
- Deleted backup and temp_holding directories
- Reorganized module structure (07->09 spatial, 09->07 dataloader)
- Added new modules: 11-14 (tokenization, embeddings, attention, transformers)
- Updated examples with historical ML milestones
- Cleaned up documentation structure
2025-09-24 10:13:37 -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"