Open omry opened 6 years ago
in pytorch tutorial, block : Let's try with a fixed initial position
does not actually fixes the position, torch manual seed should also be used.
agent = DQNAgent(env.observation_space, env.action_space) seed = 10 torch.manual_seed(seed) env.run(agent, episodes=300, seed=seed)
ok. do you mind opening a pull-request for that ?
in pytorch tutorial, block : Let's try with a fixed initial position
does not actually fixes the position, torch manual seed should also be used.