TorchLean API

NN.Runtime.Autograd.Train.Overview

NN.Runtime.Autograd.Train: Training Utilities Overview #

This directory contains lightweight, mostly-pure utilities for writing training loops on top of TorchLean's runtime autograd tape.

The goal is familiarity (a recognizable workflow) while keeping the code:

The modules here are narrow in scope: they provide the reusable training infrastructure, while architecture-specific math and constructors stay in NN.GraphSpec.Models.*, NN.API.Models.*, or user code.

Module Map #

The training utilities are intentionally not a second model API. Layers and model constructors live in the architecture/API modules; this directory only supplies the loop machinery that feeds them.

References #