Fixed bug

This commit is contained in:
Vasilis Valatsos 2024-03-26 12:46:42 +01:00
parent 27d87e9c92
commit d9b7ee30be

View file

@ -116,7 +116,7 @@ def main():
episode_reward[player.player_id][step] = player.reward episode_reward[player.player_id][step] = player.reward
if not no_training and ((step % horizon == 0 and step != 0): if not no_training and (step % horizon == 0 and step != 0):
player.agent.learn() player.agent.learn()