NVlabs / GA3C

Hybrid CPU/GPU implementation of the A3C algorithm for deep reinforcement learning.
BSD 3-Clause "New" or "Revised" License
652 stars 195 forks source link

Incompatibility with the most recent releases of OpenAI Gym #43

Open adamtupper opened 4 years ago

adamtupper commented 4 years ago

Because of the use of the deprecated gym.undo_logger_setup() method (openai/gym@4c460ba), GA3C no longer works with the most recent versions. Using this method is no longer required as OpenAI Gym no longer modifies the global logging configuration.

I've submitted a pull request (#42) to remove the use of the deprecated method.