How does AirRAG use Monte Carlo Tree Search (MCTS)?
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Lorem ipsum dolor sit amet, consectetur adipiscing elit.Morbi adipiscing gravdio, sit amet suscipit risus ultrices eu.Fusce viverra neque at purus laoreet consequa.Vivamus vulputate posuere nisl quis consequat.
Answers ( 1 )
AirRAG uses Monte Carlo Tree Search (MCTS) to generate, expand, and backtrack the reasoning process. It employs the Upper Confidence Bound applied to trees (UCT) for node selection, with the formula: `UCT(s, p) = Q(s, a) / N(s) + w * sqrt(log N(p) / N(s))`, where `Q(s, a)` is the reward, `N(s)` is the number of visits, and `w` balances exploration and exploitation.