mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-01 06:48:52 -05:00
- Remove version field from all module.yaml files - Update template generator to exclude version field - Further simplify metadata to focus on system information only - Status remains dynamically determined by test results
26 lines
540 B
YAML
26 lines
540 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "activations"
|
|
title: "Activations"
|
|
description: "Activation functions (ReLU, Sigmoid, Tanh, etc.)"
|
|
|
|
# Dependencies
|
|
dependencies:
|
|
prerequisites: ["setup", "tensor"]
|
|
enables: ["layers", "networks"]
|
|
|
|
# Package Export
|
|
exports_to: "tinytorch.core.activations"
|
|
|
|
# File Structure
|
|
files:
|
|
dev_file: "activations_dev.py"
|
|
test_file: "tests/test_activations.py"
|
|
readme: "README.md"
|
|
|
|
# Components
|
|
components:
|
|
- "ReLU"
|
|
- "Sigmoid"
|
|
- "Tanh" |