x35f / unstable_baselines

Re-implementations of SOTA RL algorithms.
127 stars 12 forks source link

[Bug]: forget to pass kwargs to gym.make #41

Closed typoverflow closed 2 years ago

typoverflow commented 2 years ago

https://github.com/x35f/unstable_baselines/blob/b3648f52edf2c21f62c82417bfacbe16a163c1c9/unstable_baselines/common/env_wrapper.py#L50

should be

env = gym.make(env_name, **kwargs) 

for consistency.

x35f commented 2 years ago

ok