disable async acktr (#129)

* disable async acktr

* linting

* linting

* linting
This commit is contained in:
pzhokhov
2018-10-02 15:54:14 -07:00
committed by Peter Zhokhov
parent fbdf55ffee
commit 62fe7c4717

View File

@@ -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': {}