Target Updates
lerax.target.AbstractTargetUpdate
Bases: eqx.Module
Rule for refreshing a target network from an online network.
lerax.target.SoftUpdate
Bases: AbstractTargetUpdate
Apply Polyak averaging.
target = tau * online + (1 - tau) * target.
Attributes:
| Name | Type | Description |
|---|---|---|
tau |
float
|
Interpolation coefficient in [0, 1]. Defaults to 0.005. |