mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-03 11:11:13 -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
544 B
YAML
26 lines
544 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "layers"
|
|
title: "Layers"
|
|
description: "Neural network layers (Linear, activation layers)"
|
|
|
|
# Dependencies
|
|
dependencies:
|
|
prerequisites: ["setup", "tensor", "activations"]
|
|
enables: ["networks", "training"]
|
|
|
|
# Package Export
|
|
exports_to: "tinytorch.core.layers"
|
|
|
|
# File Structure
|
|
files:
|
|
dev_file: "layers_dev.py"
|
|
test_file: "tests/test_layers.py"
|
|
readme: "README.md"
|
|
|
|
# Components
|
|
components:
|
|
- "Linear"
|
|
- "Activation"
|
|
- "Sequential" |