Minor changes
This commit is contained in:
parent
657578547f
commit
b7e71e6690
3 changed files with 8196 additions and 2 deletions
|
@ -140,7 +140,7 @@ class QTable:
|
||||||
|
|
||||||
|
|
||||||
# Perform learning
|
# Perform learning
|
||||||
width,height=50,30
|
width,height=10,10
|
||||||
perf=0
|
perf=0
|
||||||
last_state=None
|
last_state=None
|
||||||
last_action=None
|
last_action=None
|
||||||
|
@ -173,8 +173,9 @@ while True:
|
||||||
stuck=0
|
stuck=0
|
||||||
stuck_count+=1
|
stuck_count+=1
|
||||||
action=qtable.get_random_action()
|
action=qtable.get_random_action()
|
||||||
print("Stuck!")
|
print("Stuck! Try a random action...")
|
||||||
if stuck_count>2:
|
if stuck_count>2:
|
||||||
|
print("Can't get out of stuck. Abort!")
|
||||||
stuck_count=0
|
stuck_count=0
|
||||||
game.new_game()
|
game.new_game()
|
||||||
break
|
break
|
||||||
|
|
8192
qtable.txt
Normal file
8192
qtable.txt
Normal file
File diff suppressed because it is too large
Load diff
1
qtable.txt_generation
Normal file
1
qtable.txt_generation
Normal file
|
@ -0,0 +1 @@
|
||||||
|
15000
|
Loading…
Add table
Reference in a new issue