Skip to content

Commit a899a3f

Browse files
authored
deep_learning_grid_world_q_learning.py
1 parent b48b2f6 commit a899a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deep_learning_grid_world_q_learning.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def create_grid_world(ax):
2828
ax.set_ylim(0, 5)
2929
plt.gca().invert_yaxis()
3030

31-
#``````````````````````````````````````````````````````````````` EPSILON `````````````````````````````````````````````````````````````
31+
#``````````````````````````````````````````````````````````````` EPSILON ````````````````````````````````````````````````````````````
3232
def epsilon_greedy(Q, state, epsilon):
3333
if random.uniform(0, 1) < epsilon:
3434
return random.choice([0, 1, 2, 3])

0 commit comments

Comments
 (0)