Skip to content

Commit

Permalink
Bug correction
Browse files Browse the repository at this point in the history
  • Loading branch information
VOCdevShy committed Apr 5, 2024
1 parent 2cabd77 commit f34f685
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,7 @@
env.render()
time.sleep(1)
print(f'Episode: {episode + 1}')
sequence_words = [action_words[action] for action in sequence
] # Convert actions input number into input words
sequence_words = [action_words[action] for action in sequence] # Convert actions input number into input words
print(f'Sequence: {sequence} / {sequence_words}')
print(f'Best Sequence: {best_sequence}')
if reward:
Expand Down

0 comments on commit f34f685

Please sign in to comment.