Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 584 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 584 Bytes

Road Fighter AI

AI that teaches itself to play Road Fighter(remade) using various Reinforcement Learning Techniques. The program is made using the pygame library.

To play the game:

python3 road_fighter.py

Install the requirements:

pip install -r requirements.txt

NEAT algorithm:

To run the AI using NEAT Algorithm

cd NEAT
python3 road_fighter_AI_1.py

Deep Q Learning:

To run the AI using Deep Q Learning

cd Deep\ RL
python3 road_fighter_AI_2.py

Next Target

  • Proximal Policy Optimization