Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 2.3 KB

README.md

File metadata and controls

49 lines (37 loc) · 2.3 KB

Not-so-deep reinforcement learning

A practice module of some RL algorithms, implemented in Tensorflow Keras and OpenAI gym framework.

General:

  • I tend to focus on the RL part rather than the network structure; the network structure of the algorithms in this report is pretty simple.
  • I hope the generic algorithm structure helps.

Algorithms:

  • A2C
  • A3C
  • Deep Q Network
  • Categorical DQN (C51)
  • Quantile DQN
  • Expectile DQN

Prerequisites (testing environment)

examples.py contains examples for all implemented algorithms.

References

Acknowledgements: