Skip to content

Double Q-Learning algorithm written in C to solve a maze.

Notifications You must be signed in to change notification settings

jaysonmourier/qmaze

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

qmaze

Double Q-Learning algorithm written in C to solve a maze.

$Q_{t+1}^A(s_t, a_t) = Q_{t+1}^A(s_t, a_t) + \alpha (r_t + \gamma Q_t^B(s_{t+1}, \argmax_a Q_t^A(s_{t+1}, a) - Q_t^A(s_t, a_t)))$

$Q_{t+1}^B(s_t, a_t) = Q_{t+1}^B(s_t, a_t) + \alpha (r_t + \gamma Q_t^A(s_{t+1}, \argmax_a Q_t^B(s_{t+1}, a) - Q_t^B(s_t, a_t)))$

About

Double Q-Learning algorithm written in C to solve a maze.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages