2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Not learning rate but discount factor

This commit is contained in:
Martin Thoma 2016-07-22 15:20:01 +02:00
parent 2ec24b14b8
commit ea63ce4d57
2 changed files with 1 additions and 1 deletions

View file

@ -23,7 +23,7 @@
\Statex Actions $\mathcal{A} = \{1, \dots, n_a\},\qquad A: \mathcal{X} \Rightarrow \mathcal{A}$
\Statex Cost function $g: \mathcal{X} \times \mathcal{A} \rightarrow \mathbb{R}$
\Statex Transition probabilities $f$
\Statex Learning rate $\alpha \in [0, 1]$, typically $\alpha = 0.1$
\Statex Discounting factor $\alpha \in (0, 1)$, typically $\alpha = 0.9$
\Procedure{ValueIteration}{$\mathcal{X}$, $A$, $g$, $f$, $\alpha$}
\State Initialize $J, J': \mathcal{X} \rightarrow \mathbb{R}_0^+$ arbitrarily
\While{$J$ is not converged}