Minor changes
This commit is contained in:
parent
37308a0d4c
commit
65280331d3
3 changed files with 12 additions and 8197 deletions
|
@ -128,14 +128,16 @@ class QTable:
|
||||||
|
|
||||||
|
|
||||||
# Perform learning
|
# Perform learning
|
||||||
|
width,height=10,10
|
||||||
perf=0
|
perf=0
|
||||||
last_state=None
|
last_state=None
|
||||||
last_action=None
|
last_action=None
|
||||||
game=Snake(length=1,fps=300,startat=(random.randint(0,29),random.randint(0,29)))
|
game=Snake(length=1,fps=500,startat=(random.randint(0,width-1),random.randint(0,height-1)),grid_width=width,grid_height=height)
|
||||||
qtable=QTable("qtable.txt")
|
qtable=QTable("qtable.txt")
|
||||||
while True:
|
while True:
|
||||||
result=0
|
result=0
|
||||||
stuck=0
|
stuck=0
|
||||||
|
stuck_tolerance=1
|
||||||
state=qtable.get_state(game)
|
state=qtable.get_state(game)
|
||||||
while result >= 0:
|
while result >= 0:
|
||||||
action=qtable.get_action(state)
|
action=qtable.get_action(state)
|
||||||
|
@ -143,7 +145,7 @@ while True:
|
||||||
new_state=qtable.get_state(game)
|
new_state=qtable.get_state(game)
|
||||||
|
|
||||||
# Agent is stuck
|
# Agent is stuck
|
||||||
if stuck>=(game.grid_width*game.grid_height)/2:
|
if stuck>=(game.grid_width*game.grid_height)/stuck_tolerance:
|
||||||
game.new_game()
|
game.new_game()
|
||||||
break
|
break
|
||||||
|
|
||||||
|
@ -153,7 +155,7 @@ while True:
|
||||||
reward=-10
|
reward=-10
|
||||||
stuck=0
|
stuck=0
|
||||||
elif result==1:
|
elif result==1:
|
||||||
reward=1
|
reward=50
|
||||||
stuck=0
|
stuck=0
|
||||||
|
|
||||||
# Apply learning
|
# Apply learning
|
||||||
|
|
8192
qtable.txt
8192
qtable.txt
File diff suppressed because it is too large
Load diff
9
snake.py
9
snake.py
|
@ -18,6 +18,7 @@ class Snake:
|
||||||
self.fps=fps
|
self.fps=fps
|
||||||
self.startat=startat
|
self.startat=startat
|
||||||
self.last_score=-1
|
self.last_score=-1
|
||||||
|
self.score=0
|
||||||
# Setup pygame
|
# Setup pygame
|
||||||
pygame.init()
|
pygame.init()
|
||||||
self.font=pygame.font.SysFont(pygame.font.get_default_font(), int(self.margin/2))
|
self.font=pygame.font.SysFont(pygame.font.get_default_font(), int(self.margin/2))
|
||||||
|
@ -35,6 +36,7 @@ class Snake:
|
||||||
self.snake=[self.startat]*self.default_length
|
self.snake=[self.startat]*self.default_length
|
||||||
self.direction=3 # Like clock (12=up, 3=right, 6=bottom, 9=left)
|
self.direction=3 # Like clock (12=up, 3=right, 6=bottom, 9=left)
|
||||||
self.new_apple()
|
self.new_apple()
|
||||||
|
self.last_score=self.score
|
||||||
self.score=0
|
self.score=0
|
||||||
self.attempt+=1
|
self.attempt+=1
|
||||||
|
|
||||||
|
@ -134,7 +136,11 @@ class Snake:
|
||||||
Play using wall clock directions (12=up, 3=right, 6=down and 9=left)
|
Play using wall clock directions (12=up, 3=right, 6=down and 9=left)
|
||||||
"""
|
"""
|
||||||
# Play
|
# Play
|
||||||
self.direction=direction
|
if (self.direction==12 and direction!=6) or\
|
||||||
|
(self.direction==6 and direction!=12) or\
|
||||||
|
(self.direction==3 and direction!=9) or\
|
||||||
|
(self.direction==9 and direction!=3):
|
||||||
|
self.direction=direction
|
||||||
self.move()
|
self.move()
|
||||||
# Return code
|
# Return code
|
||||||
code=0
|
code=0
|
||||||
|
@ -144,7 +150,6 @@ class Snake:
|
||||||
self.score+=1
|
self.score+=1
|
||||||
code=1
|
code=1
|
||||||
elif self.has_loose():
|
elif self.has_loose():
|
||||||
self.last_score=self.score
|
|
||||||
self.new_game()
|
self.new_game()
|
||||||
code=-1
|
code=-1
|
||||||
# Refresh screen
|
# Refresh screen
|
||||||
|
|
Loading…
Add table
Reference in a new issue