Language Model Decoding as Direct Metrics Optimization
Haozhe Ji, Pei Ke, Hongning Wang, Minlie Huang
TL;DR
This paper introduces Daemon, a decoding framework that treats text generation as an information-projection problem: find a decoding distribution $q$ that stays close to the base LM distribution $p_\theta$ while exactly matching the expected scores of multiple human-aligned metrics. The authors derive an analytic energy-based form $p_{\theta,\boldsymbol{\mu}}(\boldsymbol{x}) \propto p_\theta(\boldsymbol{x}) \exp[-E_{\boldsymbol{\mu}}(\boldsymbol{x})]$ with $E_{\boldsymbol{\mu}}(\boldsymbol{x})=\boldsymbol{\mu}^\top \boldsymbol{f}(\boldsymbol{x})$, and solve for $\boldsymbol{\mu}$ via Weighted Importance Sampling, followed by conditional Sampling-Importance-Resampling (SIR) to draw from the globally normalized distribution. Theoretical results guarantee that the optimal decoding distribution improves perplexity relative to the original LM, and experiments across Wikipedia and Wikinews show Daemon consistently outperforms strong baselines on repetition, coherence, diversity, information content, and MAUVE, with supportive human judgments. The approach provides a principled, scalable route to align open-ended generation with human preferences by enforcing multi-criterion metric constraints during decoding. Potential extensions include broader constraint types, integration with RLHF, and more efficient EBM sampling.
Abstract
Despite the remarkable advances in language modeling, current mainstream decoding methods still struggle to generate texts that align with human texts across different aspects. In particular, sampling-based methods produce less-repetitive texts which are often disjunctive in discourse, while search-based methods maintain topic coherence at the cost of increased repetition. Overall, these methods fall short in achieving holistic alignment across a broad range of aspects. In this work, we frame decoding from a language model as an optimization problem with the goal of strictly matching the expected performance with human texts measured by multiple metrics of desired aspects simultaneously. The resulting decoding distribution enjoys an analytical solution that scales the input language model distribution via a sequence-level energy function defined by these metrics. And most importantly, we prove that this induced distribution is guaranteed to improve the perplexity on human texts, which suggests a better approximation to the underlying distribution of human texts. To facilitate tractable sampling from this globally normalized distribution, we adopt the Sampling-Importance-Resampling technique. Experiments on various domains and model scales demonstrate the superiority of our method in metrics alignment with human texts and human evaluation over strong baselines.
