Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 526 Bytes

File metadata and controls

20 lines (15 loc) · 526 Bytes

Reinforcement-Learning-Breakout

Applying Reinforcement Learning for the videogame Breakout (1976) with own agent class.

Setup

Environment:

conda create -n breakout python=3.10
conda activate breakout
pip install -r requirements.txt

If you have issues installing pygame and seaborn, install it from the conda-forge repository:

conda install -c conda-forge pygame
conda install -c conda-forge seaborn

We are using the external library ImageMagick for gif creation.