MCTS보다 좋은(?) search algorithm if ? inference-time 에 사용된다면
AlphaZero-Style Search: An enhancement of MCTS that combines deep neural networks with tree search. This approach, popularized by AlphaZero, uses a policy network to guide the search and a value network to evaluate positions, which can outperform standard MCTS by focusing the search on more promising branches.Best-First Search (A):* Best-First Search algorithms, such as A*, prioritize expanding ..