Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.88 KB

File metadata and controls

37 lines (27 loc) · 1.88 KB

ToyRL

Python PyPI PyPI Downloads GitHub License Ask DeepWiki

Ruff Checked with mypy pre-commit Build Docs Test Codecov

Documentation

https://ai-glimpse.github.io/toyrl

Installation

pip install toyrl

Algorithms

  • REINFORCE
  • SARSA
  • DQN & Double DQN
  • A2C
  • PPO

References

  • kengz/SLM-Lab: Our implementations are inspired by the book "Foundations of Deep Reinforcement Learning" and the implementation of SLM-Lab.
  • vwxyzjn/cleanrl: The main reference for the implementation of the PPO implementation.