Skip to content

ai-glimpse/toyrl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.