mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-01 00:38:35 -05:00
- 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
30 lines
799 B
YAML
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" |