Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 272 Bytes

File metadata and controls

12 lines (7 loc) · 272 Bytes

Snake

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))