Minor changes

This commit is contained in:
Loic Guegan 2022-11-01 14:28:00 +01:00
parent 67a79a65dd
commit 10e9cb1056
2 changed files with 23 additions and 0 deletions

Binary file not shown.

23
qlearning.py Executable file
View file

@ -0,0 +1,23 @@
#!/usr/bin/env python
import sys
import numpy as np
# Import snake game
from snake import Snake
# Setup QTable
qtable=np.zeros((16, 4))
game=Snake()
def event_handler(game):
if game.snake[0][0]==10:
game.direction=6
for i in range(0,10):
score=game.run()
print("Game ended with "+str(score))