Principle:Iamhankai Forest of Thought Majority Vote Consensus
| Knowledge Sources | |
|---|---|
| Domains | Ensemble_Methods, Decision_Theory |
| Last Updated | 2026-02-14 03:00 GMT |
Overview
An aggregation strategy that selects the most frequently occurring answer across multiple independent reasoning paths to improve prediction reliability.
Description
Majority Vote Consensus applies the wisdom-of-crowds principle to LLM reasoning. When multiple reasoning trees in a forest produce candidate answers, the most common answer is selected as the final prediction. This approach is robust to individual tree failures because errors are unlikely to consistently produce the same wrong answer across independent paths.
In FoT, majority voting serves two roles:
- Early stopping: If a strict majority (> N/2) of trees agree before all trees finish, the forest stops early to save computation
- First-pass selection: In CGDM post-processing, majority voting is the primary answer selection mechanism, with ties escalated to an LLM judge
Usage
Majority voting is used implicitly within FoT evaluation whenever multiple trees produce answers. It is the primary mechanism in the "majority" stopping strategy and the first pass in CGDM.
Theoretical Basis
Based on the Condorcet Jury Theorem: if each independent voter (tree) has probability p > 0.5 of being correct, the majority vote accuracy approaches 1 as the number of voters increases:
Early stopping condition:
This is equivalent to self-consistency decoding applied to tree-level outputs rather than token-level outputs.