paper-with-me

홈 › Papers

LiTS: A Modular Framework for LLM Tree Search

2026-02-28 · Xinzhe Li, Yaguang Tao arxiv

LiTS is a modular Python framework for LLM reasoning via tree search. It decomposes tree search into three reusable components (Policy, Transition, and RewardModel) that plug into algorithms like MCTS and BFS. A decorator-based registry enables domain experts to extend to new domains by registering components, and algorithmic researchers to implement custom search algorithms. We demonstrate composability on MATH500 (language reasoning), Crosswords (environment planning), and MapEval (tool use), showing that components and algorithms are orthogonal: components are reusable across algorithms within each task type, and algorithms work across all components and domains. We also report a mode-collapse finding: in infinite action spaces, LLM policy diversity (not reward quality) is the bottleneck for effective tree search. A demonstration video is available at https://youtu.be/nRGX43YrR3I. The package is released under the Apache 2.0 license at https://github.com/xinzhel/lits-llm, including installation instructions and runnable examples that enable users to reproduce the demonstrated workflows.

📄 PDF Abstract BibTeX arXiv:2603.00631

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Chain-in-Tree: Back to Sequential Reasoning in LLM Tree Search

2025-09-30 · Xinzhe Li arxiv

Test-time scaling improves large language models (LLMs) on long-horizon reasoning tasks by allocating more compute at inference. LLM inference via tree search (LITS) achieves strong performance but is highly inefficient.…

FoLDTree: A ULDA-Based Decision Tree Framework for Efficient Oblique Splits and Feature Selection

2024-10-30 · Siyu Wang, Kehui Yao

Traditional decision trees are limited by axis-orthogonal splits, which can perform poorly when true decision boundaries are oblique. While oblique decision tree methods address this limitation, they often face high comp…

feature selectionMissing ValuesMulti-class Classification

DICS: Data-Informed Centroid Splitting for Decision Tree Classifiers

2026-08-20 · MD Saifur Rahman Mazumder, Feng Yu arxiv

Decision tree-based models are widely used in machine learning due to their interpretability and strong empirical performance. However, training decision trees can be computationally expensive, particularly for large and…

Computational Efficiency

Optimizing High-Dimensional Oblique Splits

2025-03-18 · Chien-Ming Chi

Orthogonal-split trees perform well, but evidence suggests oblique splits can enhance their performance. This paper explores optimizing high-dimensional $s$-sparse oblique splits from $\{(\vec{w}, \vec{w}^{\top}\boldsymb…

When does Subagging Work?

2024-04-02 · Christos Revelas, Otilia Boldea, Bas J. M. Werker

We study the effectiveness of subagging, or subsample aggregating, on regression trees, a popular non-parametric method in machine learning. First, we give sufficient conditions for pointwise consistency of trees. We for…