/DQN-blob

forked from sentdex

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

DQN-blob

Forked from sentdex
https://pythonprogramming.net/training-deep-q-learning-dqn-reinforcement-learning-python-tutorial/
and split from one large file into multiple files:

**original.py**:
Is the original file from sentdex.

**agent.py**:
class which operates on the game and does the training

**model.py**:
Removed the model from the agent class into a seperate one. Created two instances of the model. .model and .target_model

**game.py**:
class of the blobgame itself

**env.py**:
class of the enviroment of the game

**main.py**: