From 3fec5a9b1495cef87998289702c2eabb2d78b294 Mon Sep 17 00:00:00 2001 From: "Katz, Ilia (ik216a)" Date: Fri, 4 Aug 2023 21:34:11 +0200 Subject: [PATCH] Remove duplication in mc-vs-td.mdx --- units/en/unit2/mc-vs-td.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/units/en/unit2/mc-vs-td.mdx b/units/en/unit2/mc-vs-td.mdx index 78ef297..7a84b72 100644 --- a/units/en/unit2/mc-vs-td.mdx +++ b/units/en/unit2/mc-vs-td.mdx @@ -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 don’t discount the rewards). - \\(G_t = 1 + 0 + 0 + 0+ 0 + 0 + 1 + 1 + 0 + 0\\) - \\(G_t= 3\\)