Files
TinyTorch/modules/source/07_autograd/module.yaml
Vijay Janapa Reddi 869d4251e7 Standardize module.yaml files for instructor/staff workflow
- Remove student-facing bloat (learning objectives, time estimates, pedagogical details)
- Remove assessment sections (not needed for operational metadata)
- Streamline to essential system information only:
  - Module identification and dependencies
  - Package export configuration
  - File structure and component listings

- Updated existing files (6): setup, tensor, activations, layers, autograd, optimizers
- Created missing files (3): networks, cnn, dataloader
- Consistent 25-26 line format across all 9 modules

Result: Pure operational metadata for CLI tools and build systems
Perfect for instructor/staff development workflow
2025-07-14 00:08:05 -04:00

26 lines
737 B
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "autograd"
title: "Autograd"
description: "Automatic differentiation engine for gradient computation"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: ["setup", "tensor", "activations"]
enables: ["optimizers", "training"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.autograd"
# File Structure - What files exist in this module
files:
dev_file: "autograd_dev.py"
test_file: "tests/test_autograd.py"
readme: "README.md"
# Components - What's implemented in this module
components:
- "Variable"
- "backward"
- "gradient_computation"