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
in the mcts.py line 86, why the Q of node is initialzied via self.Q = self.parent.V + self.r
since Q(s,a)=E_{p(s', r|s,a)}[r(s,a)+weight * V(s')]
In LLM-setting, p(s',r|s,a) = 1 given s and a, Q(s,a)=r(s,a)+weight * V(s')
In this case, node.Q = reward + node.V ? which is used in the def _back_propagate in line 272
The text was updated successfully, but these errors were encountered:
in the mcts.py line 86, why the Q of node is initialzied via self.Q = self.parent.V + self.r
since Q(s,a)=E_{p(s', r|s,a)}[r(s,a)+weight * V(s')]
In LLM-setting, p(s',r|s,a) = 1 given s and a, Q(s,a)=r(s,a)+weight * V(s')
In this case, node.Q = reward + node.V ? which is used in the def _back_propagate in line 272
The text was updated successfully, but these errors were encountered: