Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
User committed Jun 27, 2021
1 parent a5087bc commit 42420d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rl/monte_carlo.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def play_game(grid, policy, max_steps=20):
V[s] = 0

# repeat
for t in range(100):
for _ in range(100):
# generate an episode using pi
states, rewards = play_game(grid, policy)
G = 0
Expand Down

0 comments on commit 42420d5

Please sign in to comment.