Online Learning Networks#

Build an online-learning-ready recurrent model in three connected steps. First, ETP operators mark the parameterized computations that participate in online learning. Next, braintrace.nn layers compose those operators into reusable network blocks. Finally, hidden states provide the temporal destinations that the compiler connects to the marked parameter paths.

Choose a foundation#

Operators for Online Learning

Mark trainable computation paths with the five public ETP operators and verify their batching, unit, and JAX-transform contracts.

Operators for Online Learning
Neural Network Layers for Online Learning

Compose the marked operators through braintrace.nn layers while preserving operation-based parameter selection and relation boundaries.

Neural Network Layers for Online Learning
Hidden States for Online Learning

Define and initialize the recurrent state that makes a model temporal, then inspect the hidden groups discovered by the compiler.

Hidden States for Online Learning

Where to look first#