This is the code for "Q Learning Explained" by Siraj Raval on Youtube
This weeks coding challenge is to use Q learning to train a simple game bot. You can use OpenAI's gym or really any virtual environment. Bonus points for good documentation, good luck!
This is the code for this video on Youtube by Siraj Raval on Q Learning as part of the AI for video games series. This uses the OpenAI Gym environment to train a mountain car how to climb a hill.
- openai gym https://github.com/openai/gym
Run 'python q_learning.py' in terminal
Credits for this code go to mustafa. I've merely created a wrapper to get people started.