Skip to content

Commit

Permalink
Fix equation 16-6 (max_alpha'=>max_a')
Browse files Browse the repository at this point in the history
  • Loading branch information
ageron committed May 7, 2018
1 parent c66d755 commit ea7e84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book_equations.ipynb
Expand Up @@ -974,7 +974,7 @@
"**Equation 16-6: Q-Learning using an exploration function**\n",
"\n",
"$\n",
"Q(s, a) \\gets (1-\\alpha)Q(s,a) + \\alpha\\left(r + \\gamma . \\underset{\\alpha'}{\\max}f(Q(s', a'), N(s', a'))\\right)\n",
"Q(s, a) \\gets (1-\\alpha)Q(s,a) + \\alpha\\left(r + \\gamma \\, \\underset{a'}{\\max}f(Q(s', a'), N(s', a'))\\right)\n",
"$\n",
"\n",
"**Equation 16-7: Target Q-Value**\n",
Expand Down

0 comments on commit ea7e84e

Please sign in to comment.