mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-04-30 23:31:32 -05:00
- Remove redundant fields from module.yaml files: exports_to, files, components - Keep only essential system metadata: name, title, description, dependencies - Export command now reads actual export targets from dev files (#| default_exp directive) - Status command updated to use dev files as source of truth for export targets - Export command shows detailed source → target mapping for better clarity - Dependencies field retained as it's useful for CLI module ordering and prerequisites - Eliminates duplication between YAML and dev files - dev files are the real truth
11 lines
359 B
YAML
11 lines
359 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "activations"
|
|
title: "Activation Functions"
|
|
description: "Neural network activation functions (ReLU, Sigmoid, Tanh)"
|
|
|
|
# Dependencies - Used by CLI for module ordering and prerequisites
|
|
dependencies:
|
|
prerequisites: ["tensor"]
|
|
enables: ["layers", "networks"] |