Minor changes

This commit is contained in:
Loic Guegan 2022-11-01 14:58:06 +01:00
parent b3b8478a9c
commit a417a3054c

View file

@ -24,6 +24,8 @@ from snake import Snake
##### Totally 12 boolean features so 2^12=4096 states ##### Totally 12 boolean features so 2^12=4096 states
##### Totally 4 actions for the AI (up, right,down,left) ##### Totally 4 actions for the AI (up, right,down,left)
##### Totally 4*2^12 thus 16 384 table entries ##### Totally 4*2^12 thus 16 384 table entries
##### Reward +1 when eat an apple
##### Reward -10 when hit obstacle
qtable=np.zeros((4096, 4)) qtable=np.zeros((4096, 4))