项目作者: rldotai

项目描述 :
Reinforcement learning algorithms
高级语言: Python
项目地址: git://github.com/rldotai/rl-algorithms.git
创建时间: 2015-10-28T23:01:35Z
项目社区:https://github.com/rldotai/rl-algorithms

开源协议:MIT License

下载


rl-algorithms

Reinforcement learning algorithms.

There are many different variants on the basic ideas of reinforcement learning.
I have implemented some of them, with a focus on linear function approximation.

Extending these algorithms (for example, with nonlinear function approximators such as neural nets) is relatively straightforward once you are familiar with the underlying ideas.

To facilitate this, the algorithms listed are written in a straightforward style and thoroughly commented, with references to the relevant papers and some explanation of the reasoning behind the code.

Implemented Algorithms

TODO

  • Q-Learning
  • SARSA
  • Distributional RL algorithms
  • Other second-order TD algorithms (e.g., NTD)
  • Actor-Critic algorithms

Contributing

Send me a pull request if you have code to contribute.

Alternatively, raise an issue and provide me with a link to the paper describing the algorithm, and I will read and implement it when I get a chance.