mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-08 09:32:36 -05:00
✅ Rename all module directories: 00_setup → 01_setup, etc. ✅ Update convert_modules.py mappings for new directory names ✅ Update _toc.yml file paths and titles (1-14 instead of 0-13) ✅ Regenerate all overview pages with new numbering ✅ Fix all broken references in usage-paths and intro ✅ Update chapter references to use natural numbering Benefits: - More intuitive course progression starting from 1 - Matches academic course numbering conventions - Eliminates confusion about 'Module 0' concept - Cleaner mental model for students and instructors - All references and links properly updated Complete transformation: 14 modules now numbered 01-14
32 lines
947 B
YAML
32 lines
947 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "13_mlops"
|
|
title: "MLOps - Production ML Systems"
|
|
description: "Complete MLOps pipeline for production deployment, monitoring, and continuous learning"
|
|
|
|
# Dependencies - Used by CLI for module ordering and prerequisites
|
|
dependencies:
|
|
prerequisites: [
|
|
"00_setup", "01_tensor", "02_activations", "03_layers",
|
|
"04_networks", "05_cnn", "06_dataloader", "07_autograd",
|
|
"08_optimizers", "09_training", "10_compression", "11_kernels",
|
|
"12_benchmarking"
|
|
]
|
|
enables: []
|
|
|
|
# Package Export - What gets built into tinytorch package
|
|
exports_to: "tinytorch.core.mlops"
|
|
|
|
# File Structure - What files exist in this module
|
|
files:
|
|
dev_file: "mlops_dev.py"
|
|
readme: "README.md"
|
|
tests: "inline"
|
|
|
|
# Components - What's implemented in this module
|
|
components:
|
|
- "ModelMonitor"
|
|
- "DriftDetector"
|
|
- "RetrainingTrigger"
|
|
- "MLOpsPipeline" |