From 92204c448fe45b13b7525a6dd1046600754617ee Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Sat, 2 Jul 2022 16:41:25 +0200 Subject: [PATCH] Testing kl-projection (it's working!) --- test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.py b/test.py index 4a0cbc0..ad3dbdd 100755 --- a/test.py +++ b/test.py @@ -19,7 +19,7 @@ root_path = '.' def main(env_name='ColumbusCandyland_Aux10-v0', timesteps=10_000_000, showRes=True, saveModel=True, n_eval_episodes=0): env = gym.make(env_name) - use_sde = True + use_sde = False ppo = PPO( "MlpPolicy", env, @@ -101,5 +101,5 @@ def testModel(model, timesteps, showRes=False, saveModel=False, n_eval_episodes= if __name__ == '__main__': # main('LunarLanderContinuous-v2') # main('ColumbusJustState-v0') - # main('ColumbusStateWithBarriers-v0') - main('ColumbusEasierObstacles-v0') + main('ColumbusStateWithBarriers-v0') + # main('ColumbusEasierObstacles-v0')