From d7253c51e7113d47e3390efd5bc93190806996ee Mon Sep 17 00:00:00 2001 From: Akshunn Trivedi <35093460+triakshunn@users.noreply.github.com> Date: Mon, 20 Mar 2023 17:16:40 +0800 Subject: [PATCH] Update reinforcement_q_learning.py Changed convolutional neural network to feed-forward neural network. --- intermediate_source/reinforcement_q_learning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/reinforcement_q_learning.py b/intermediate_source/reinforcement_q_learning.py index dd4a84d5908..083ce07f77a 100644 --- a/intermediate_source/reinforcement_q_learning.py +++ b/intermediate_source/reinforcement_q_learning.py @@ -194,7 +194,7 @@ def __len__(self): # Q-network # ^^^^^^^^^ # -# Our model will be a convolutional neural network that takes in the +# Our model will be a feed forward neural network that takes in the # difference between the current and previous screen patches. It has two # outputs, representing :math:`Q(s, \mathrm{left})` and # :math:`Q(s, \mathrm{right})` (where :math:`s` is the input to the