Skip to content

Latest commit

 

History

47 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.