mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-05 03:21:13 -05:00
- Removed 01_setup module (archived to archive/setup_module) - Renumbered all modules: tensor is now 01, activations is 02, etc. - Added tito setup command for environment setup and package installation - Added numeric shortcuts: tito 01, tito 02, etc. for quick module access - Fixed view command to find dev files correctly - Updated module dependencies and references - Improved user experience: immediate ML learning instead of boring setup
31 lines
562 B
YAML
31 lines
562 B
YAML
components:
|
|
- MeanSquaredError
|
|
- CrossEntropyLoss
|
|
- BinaryCrossEntropyLoss
|
|
- Accuracy
|
|
- Trainer
|
|
dependencies:
|
|
enables:
|
|
- compression
|
|
- kernels
|
|
- benchmarking
|
|
- mlops
|
|
prerequisites:
|
|
- tensor
|
|
- activations
|
|
- layers
|
|
- networks
|
|
- dataloader
|
|
- autograd
|
|
- optimizers
|
|
description: Neural network training loops, loss functions, and metrics
|
|
difficulty: "\u2B50\u2B50\u2B50\u2B50"
|
|
exports_to: tinytorch.core.training
|
|
files:
|
|
dev_file: training_dev.py
|
|
readme: README.md
|
|
tests: inline
|
|
name: training
|
|
time_estimate: 8-10 hours
|
|
title: Training
|