AI to play Snake
This snake game uses tensorflow to implement Reinforcment Learning (Q Learning)
Built using Pygame
Simply Run the Train.py to see it in action!
Q Learning Alg To Learn more!
Q New(action, State) = reward + (discount * max (action + 1, state))