Add retro to ppo2 defaults (#682)

* Adds retro to ppo2 defaults

Created defaults for retro, copied from Atari defaults for now. Tested with SuperMarioBros-Nes

* ppo2 retro defaults to atari
This commit is contained in:
Mathieu Poliquin
2018-10-31 01:17:46 +08:00
committed by pzhokhov
parent 637bf55da7
commit a071fa7630

View File

@@ -20,3 +20,6 @@ def atari():
lr=lambda f : f * 2.5e-4,
cliprange=lambda f : f * 0.1,
)
def retro():
return atari()