Skip to content

mbrdg/gekitai-with-reinforcement-learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gekitai with Reiforcement Learning

The Gekitai game with OpenAI gym for reinforcement learning

Dependencies

The required dependecies are specified in the Pipfile file, meaning it is only required to have pipenv installed in the system.

After the installation or if you already have pipenv run the commands below to install all the required dependencies:

$ pipenv --python=3.10
$ pip install 'stable-baselines3[extra]' scipy jupyter

Candy Stuff 🍭

Inside this notebook there is already code that will generate models with the help of the RL algorithms. During that processing the Stable Baselines3 will also log to TensorBoard some graphs that you may find useful.

For launching an instance of TensorBoard run the following commands:

$ pipenv shell
$ tensorboard --logdir=logs

After that a link to localhost should appear, et voilà!

Contributors