2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00

Improve pseudocode

This commit is contained in:
Martin Thoma 2016-08-04 23:19:19 +02:00
parent dd9390388d
commit ddd08a2a45
10 changed files with 11 additions and 10 deletions

View file

@ -33,7 +33,7 @@
\While{$s$ is not terminal}
\State Calculate $\pi$ according to Q and exploration strategy (e.g. $\pi(x) \gets \argmax_{a} Q(x, a)$)
\State $a \gets \pi(s)$
\State $r \gets R(s, a)$
\State $r \gets R(s, a)$ \Comment{Receive the reward}
\State $s' \gets T(s, a)$ \Comment{Receive the new state}
\State $Q(s', a) \gets (1 - \alpha) \cdot Q(s, a) + \alpha \cdot (r + \gamma \cdot \max_{a'} Q(s', a'))$
\State $s \gets s'$