Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monte Carlo Tree Search :: AlphaGeese, AlphaZero .. etc #356

Open
Chandanpanda opened this issue Aug 28, 2024 · 0 comments
Open

Monte Carlo Tree Search :: AlphaGeese, AlphaZero .. etc #356

Chandanpanda opened this issue Aug 28, 2024 · 0 comments

Comments

@Chandanpanda
Copy link

It would be nice to have an implementation of the MCTS in this codebase. In case it is not clear, I am referring to the https://tonghuikang.github.io/ai-project/report.pdf.

Page 16..
AlphaGeese [2] follows an implementation of MCTS [21] [22]. The implementation of MCTS tracks the following variables.
• P(s, a, i) The prior probability agent i of taking an action a from a state
s according to the neural network. This is the softmaxed value of the
action-values inferred by the neural network.
• N(s, a, i) The number of times we explore the action a taken by agent i
from a state s when we are searching the tree.
• Q(s, a, i) The expected reward for taking the action a by agent i from
a state s. This is initialised with the state-value inferred by the neural
network. Q(s, a, i) is the average of the state-values of the explored nodes
in its subtree.
The action with the highest upper confidence bound U(s, a) is explored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant