You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 5, 2024. It is now read-only.
I add one question regarding the Sarsa agent implementation. In the official pseudo-algorihtm of Sarsa lambda (slide 29) the Q value and the Eligibility Traces are updated at each step for every state-action pair of the environment.
If I correctly understood your code, it seams to me that you only update the current step state-action pair.
Hi @hartikainen,
Thank you for the super cool repo 馃憤
I add one question regarding the Sarsa agent implementation. In the official pseudo-algorihtm of Sarsa lambda (slide 29) the Q value and the Eligibility Traces are updated at each step for every state-action pair of the environment.
If I correctly understood your code, it seams to me that you only update the current step state-action pair.
Did you make your implementation knowing such a difference?
Thanks a lot @hartikainen