openai / universe-starter-agent

A starter agent that can solve a number of universe environments.
MIT License
1.1k stars 318 forks source link

Replace LSTMs with GRUs in A3C model #93

Closed louiehelm closed 6 years ago

louiehelm commented 7 years ago

Here's the clean, self-contained replacement of LSTMs --> GRUs in the A3C implementation

This PR is ready to be pulled and supersedes https://github.com/openai/universe-starter-agent/pull/85

louiehelm commented 7 years ago

Everything look good with the LSTM --> GRU change? This PR is clean and ready to merge, unlike #85.

As mentioned in #85, this should be strictly faster and higher performance for all inputs across the board since it's a fundamentally better way to structure the RNN.