Model-Based Minimum Bayes Risk Decoding for Text Generation

Yuu Jinnai,Tetsuro Morimura,Ukyo Honda,Kaito Ariu,Kenshi Abe
2024-06-12
Abstract:Minimum Bayes Risk (MBR) decoding has been shown to be a powerful alternative to beam search decoding in a variety of text generation tasks. MBR decoding selects a hypothesis from a pool of hypotheses that has the least expected risk under a probability model according to a given utility function. Since it is impractical to compute the expected risk exactly over all possible hypotheses, two approximations are commonly used in MBR. First, it integrates over a sampled set of hypotheses rather than over all possible hypotheses. Second, it estimates the probability of each hypothesis using a Monte Carlo estimator. While the first approximation is necessary to make it computationally feasible, the second is not essential since we typically have access to the model probability at inference time. We propose Model-Based MBR (MBMBR), a variant of MBR that uses the model probability itself as the estimate of the probability distribution instead of the Monte Carlo estimate. We show analytically and empirically that the model-based estimate is more promising than the Monte Carlo estimate in text generation tasks. Our experiments show that MBMBR outperforms MBR in several text generation tasks, both with encoder-decoder models and with large language models.
Artificial Intelligence,Computation and Language
What problem does this paper attempt to address?
The paper aims to address the issue of decoding strategies in text generation tasks, particularly the degradation problems present in existing methods (such as beam search), such as repetition and infinite length outputs. The paper proposes a Model-Based Minimum Bayes Risk Decoding (MBMBR) as an improved version of the traditional Minimum Bayes Risk (MBR) decoding. MBMBR uses the model's own probability estimates rather than Monte Carlo estimates to approximate the probability distribution, thereby improving decoding performance in various text generation tasks. Experimental results show that MBMBR outperforms traditional MBR methods in multiple tasks, including machine translation, text summarization, and image captioning. Additionally, the paper explores the impact of different sampling strategies on decoding performance and demonstrates the effectiveness of MBMBR under various settings through experiments.