Core Reinforcement-Learning Definitions #
This module collects the small mathematical definitions that sit underneath TorchLean's RL development.
These definitions are intentionally spec-level rather than runtime-level:
- Bellman-style backups,
- discounted returns,
- generalized advantage estimation (GAE),
- and simple typed rollout records.
That keeps the actual RL mathematics in a proof-friendly namespace and avoids duplicating it inside runtime/trainer code.
Numerical Containers #
Trajectories use Tensor α [horizon], including when the horizon is chosen at runtime. Rewards,
values, and termination markers share that index, so mismatched trajectories cannot be silently
truncated. Scalar recurrences and their evaluation order are explicit below.
Primary references:
- Sutton, "Learning to Predict by the Methods of Temporal Differences" (1988): https://doi.org/10.1023/A:1022633531479
- Watkins and Dayan, "Q-learning" (1992): https://doi.org/10.1007/BF00992698
- Sutton and Barto, Reinforcement Learning: An Introduction (2nd ed.): http://incompleteideas.net/book/the-book-2nd.html
- Schulman et al., "High-Dimensional Continuous Control Using Generalized Advantage Estimation" (2015): https://arxiv.org/abs/1506.02438
- TorchRL documentation (rollouts, tensordicts, and GAE-style objectives): https://pytorch.org/rl/
Shape-indexed trajectory calculations #
Discounted returns with a far-right bootstrap, evaluated from right to left.
Instances For
Discounted returns for a terminal trajectory.
Instances For
Discounted returns with one termination marker per reward; unequal lengths are unrepresentable.
The multiplication order matches discountedBackup, including its floating-point behavior.
Instances For
Generalized Advantage Estimation, retaining the common horizon in all five tensor types.
Instances For
Lambda-returns R_t = A_t + V_t, with equal lengths enforced by the tensor shape.