Updating functions
Corson N. Areshenkoff
2024-08-13
updating_functions.Rmd
iowa implements multiple common updating functions, and can be relatively easily extended to include more. Currently, The following are included in the base package:
Decay reinforcement learning rule
- Keyword:
DRL
- Parameters:
d
(Decay parameter) - Bounds: \(d \in [0,1]\)
- Description: Valuation of all decks decays by a factor of
d
, while the chosen deckc
is updated by the observed utilityu
.
\[ v_c(u) = dv_c + \delta_cu \]