paper-with-me

Papers

Spending Thinking Time Wisely: Accelerating MCTS with Virtual Expansions

2022-10-23 · Weirui Ye, Pieter Abbeel, Yang Gao

One of the most important AI research questions is to trade off computation versus performance since ``perfect rationality" exists in theory but is impossible to achieve in practice. Recently, Monte-Carlo tree search (MCTS) has attracted considerable attention due to the significant performance improvement in various challenging domains. However, the expensive time cost during search severely restricts its scope for applications. This paper proposes the Virtual MCTS (V-MCTS), a variant of MCTS that spends more search time on harder states and less search time on simpler states adaptively. We give theoretical bounds of the proposed method and evaluate the performance and computations on $9 \times 9$ Go board games and Atari games. Experiments show that our method can achieve comparable performances to the original search algorithm while requiring less than $50\%$ search time on average. We believe that this approach is a viable alternative for tasks under limited time and resources. The code is available at \url{https://github.com/YeWR/V-MCTS.git}.

📄 PDF Abstract BibTeX arXiv:2210.12628

Code (0)

등록된 구현이 없습니다.

Tasks

Atari GamesBoard Games

Methods 이 논문이 사용한 방법론

Monte-Carlo Tree Search Monte-Carlo Tree Search is a planning algorithm that accumulates value estimates obtained from Monte Carlo simulations in order to successively direct simulations towards more…

Similar Papers 제목 키워드 기반

Accelerating Monte-Carlo Tree Search with Optimized Posterior Policies

2026-01-03 · Keith Frankston, Benjamin Howard arxiv

We introduce a recursive AlphaZero-style Monte--Carlo tree search algorithm, "RMCTS". The advantage of RMCTS over AlphaZero's MCTS-UCB is speed. In RMCTS, the search tree is explored in a breadth-first manner, so that ne…

Mixed variable structural optimization using mixed variable system Monte Carlo tree search formulation

2023-09-25 · Fu-Yao Ko, Katsuyuki Suzuki, Kazuo Yonekura

A novel method called mixed variable system Monte Carlo tree search (MVSMCTS) formulation is presented for optimization problems considering various types of variables with single and mixed continuous-discrete system. Th…

Does it matter how well I know what you're thinking? Opponent Modelling in an RTS game

2020-06-15 · James Goodman, Simon Lucas

Opponent Modelling tries to predict the future actions of opponents, and is required to perform well in multi-player games. There is a deep literature on learning an opponent model, but much less on how accurate such mod…

Spending Privacy Budget Fairly and Wisely

2022-04-27 · Lucas Rosenblatt, Joshua Allen, Julia Stoyanovich

Differentially private (DP) synthetic data generation is a practical method for improving access to data as a means to encourage productive partnerships. One issue inherent to DP is that the "privacy budget" is generally…

FairnessFeature ImportanceSynthetic Data Generation

MCTS-Judge: Test-Time Scaling in LLM-as-a-Judge for Code Correctness Evaluation

2025-02-18 · Yutong Wang, Pengliang Ji, Chaoqun Yang, Kaixin Li 외

The LLM-as-a-Judge paradigm shows promise for evaluating generative content but lacks reliability in reasoning-intensive scenarios, such as programming. Inspired by recent advances in reasoning models and shifts in scali…

global-optimizationLarge Language Model