Skip to content

Commit 88f8fef

Browse files
authored
Merge branch 'main' into dependabot/pip/pillow-10.2.0
2 parents 8c3730f + 219a9e3 commit 88f8fef

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
@@ -403,7 +403,7 @@ def optimize_model():
403403
num_episodes = 50
404404

405405
for i_episode in range(num_episodes):
406-
# Initialize the environment and get it's state
406+
# Initialize the environment and get its state
407407
state, info = env.reset()
408408
state = torch.tensor(state, dtype=torch.float32, device=device).unsqueeze(0)
409409
for t in count():

0 commit comments

Comments
 (0)