TL;DR
Existing retrieval methods struggle with vocabulary mismatch and inefficiencies when adapting to new models. STORM (Stepwise Token Optimization with Reward-Guided Beam Search) is introduced as a self-supervised framework that optimizes lexical query expansion by scoring candidate terms against a BM25 index.
✦ Why It Matters
Engineers can leverage STORM for efficient and effective query expansion in retrieval systems without heavy infrastructure.
Key Takeaways
How It Works
STORM operates by generating candidate query expansions and scoring them against a BM25 index. It uses a reward-guided beam search to prune low-reward continuations, effectively turning retrieval performance into a token-level optimization signal.
This allows the model to focus on vocabulary that enhances retrieval effectiveness, rather than generating well-formed but ineffective terms.
Related