Minor changes
This commit is contained in:
parent
67a79a65dd
commit
10e9cb1056
2 changed files with 23 additions and 0 deletions
BIN
__pycache__/snake.cpython-310.pyc
Normal file
BIN
__pycache__/snake.cpython-310.pyc
Normal file
Binary file not shown.
23
qlearning.py
Executable file
23
qlearning.py
Executable 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))
|
Loading…
Add table
Reference in a new issue