TL;DR
Majority voting is commonly used for aggregating answers from multiple samples in large language model (LLM) inference, but it overlooks valuable information. A new method called Propagational Proxy Voting (PPV) was developed to utilize additional signals from each sample.
✦ Why It Matters
Engineers can improve LLM inference accuracy by adopting delegation-based aggregation methods like PPV.
Key Takeaways
How It Works
PPV operates by partitioning sampled responses into groups and calculating their letter-level semantic entropy and reasoning embedding centroids. It then uses these metrics to inform how much weight each voter retains on their own choice and how they distribute the remaining weight among peers.
This method allows PPV to effectively capture and utilize signals that majority voting typically ignores.
Related