Merge pull request #377 from mrvincenzo/bugfix/fix-minor-duplication-unit2

Remove duplication in mc-vs-td.mdx
This commit is contained in:
Thomas Simonini
2023-08-05 15:00:21 +02:00
committed by GitHub

View File

@@ -58,7 +58,6 @@ For instance, if we train a state-value function using Monte Carlo:
- We have a list of state, action, rewards, next_state, **we need to calculate the return \\(G{t}\\)**
- \\(G_t = R_{t+1} + R_{t+2} + R_{t+3} ...\\)
- \\(G_t = R_{t+1} + R_{t+2} + R_{t+3}…\\) (for simplicity we dont discount the rewards).
- \\(G_t = 1 + 0 + 0 + 0+ 0 + 0 + 1 + 1 + 0 + 0\\)
- \\(G_t= 3\\)