Skip to content

Commit 6eaa7fd

Browse files
authored
Update reinforcement_q_learning.py (#2262)
Changed convolutional neural network to feed-forward neural network.
1 parent be94171 commit 6eaa7fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intermediate_source/reinforcement_q_learning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def __len__(self):
194194
# Q-network
195195
# ^^^^^^^^^
196196
#
197-
# Our model will be a convolutional neural network that takes in the
197+
# Our model will be a feed forward neural network that takes in the
198198
# difference between the current and previous screen patches. It has two
199199
# outputs, representing :math:`Q(s, \mathrm{left})` and
200200
# :math:`Q(s, \mathrm{right})` (where :math:`s` is the input to the

0 commit comments

Comments
 (0)