Remove duplication in mc-vs-td.mdx

This commit is contained in:
Katz, Ilia (ik216a)
2023-08-04 21:34:11 +02:00
parent 7401a3ae09
commit 3fec5a9b14

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\\)