From 62fe7c47171421f2642cfd4563889d0189c3a673 Mon Sep 17 00:00:00 2001 From: pzhokhov Date: Tue, 2 Oct 2018 15:54:14 -0700 Subject: [PATCH] disable async acktr (#129) * disable async acktr * linting * linting * linting --- baselines/common/tests/test_cartpole.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baselines/common/tests/test_cartpole.py b/baselines/common/tests/test_cartpole.py index 0660161..06d65e4 100644 --- a/baselines/common/tests/test_cartpole.py +++ b/baselines/common/tests/test_cartpole.py @@ -13,7 +13,7 @@ common_kwargs = dict( learn_kwargs = { 'a2c' : dict(nsteps=32, value_network='copy', lr=0.05), - 'acktr': dict(nsteps=32, value_network='copy'), + 'acktr': dict(nsteps=32, value_network='copy', is_async=False), 'deepq': dict(total_timesteps=20000), 'ppo2': dict(value_network='copy'), 'trpo_mpi': {}