paper-with-me

홈 › Papers

Learning to Refine with Fine-Grained Natural Language Feedback

2024-07-02 · Manya Wadhwa, Xinyu Zhao, Junyi Jessy Li, Greg Durrett

Recent work has explored the capability of large language models (LLMs) to identify and correct errors in LLM-generated responses. These refinement approaches frequently evaluate what sizes of models are able to do refinement for what problems, but less attention is paid to what effective feedback for refinement looks like. In this work, we propose looking at refinement with feedback as a composition of three distinct LLM competencies: (1) detection of bad generations; (2) fine-grained natural language critique generation; (3) refining with fine-grained feedback. The first step can be implemented with a high-performing discriminative model and steps 2 and 3 can be implemented either via prompted or fine-tuned LLMs. A key property of the proposed Detect, Critique, Refine ("DCR") method is that the step 2 critique model can give fine-grained feedback about errors, made possible by offloading the discrimination to a separate model in step 1. We show that models of different capabilities benefit from refining with DCR on the task of improving factual consistency of document grounded summaries. Overall, DCR consistently outperforms existing end-to-end refinement approaches and current trained models not fine-tuned for factuality critiquing.

📄 PDF Abstract BibTeX arXiv:2407.02397

Code (1)

manyawadhwa/dcr 공식 구현

Methods 이 논문이 사용한 방법론

Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
Attention 설명 없음

Similar Papers 제목 키워드 기반

LLMRefine: Pinpointing and Refining Large Language Models via Fine-Grained Actionable Feedback

2023-11-15 · Wenda Xu, Daniel Deutsch, Mara Finkelstein, Juraj Juraska 외

Recent large language models (LLM) are leveraging human feedback to improve their generation quality. However, human feedback is costly to obtain, especially during inference. In this work, we propose LLMRefine, an infer…

Long Form Question AnsweringMachine TranslationQuestion AnsweringText Generation+1

A Little More Like This: Text-to-Image Retrieval with Vision-Language Models Using Relevance Feedback

2025-11-21 · Bulat Khaertdinov, Mirela Popa, Nava Tintarev arxiv

Large vision-language models (VLMs) enable intuitive visual search using natural language queries. However, improving their performance often requires fine-tuning and scaling to larger model variants. In this work, we pr…

Natural Language QueriesImage Retrieval

Self-Critique and Refinement for Faithful Natural Language Explanations

2025-05-28 · Yingming Wang, Pepa Atanasova

With the rapid development of large language models (LLMs), natural language explanations (NLEs) have become increasingly important for understanding model predictions. However, these explanations often fail to faithfull…

Training Language Models with Language Feedback

2022-04-29 · Jérémy Scheurer, Jon Ander Campos, Jun Shern Chan, Angelica Chen 외

Pretrained language models often do not perform tasks in ways that are in line with our preferences, e.g., generating offensive text or factually incorrect summaries. Recent work approaches the above issue by learning fr…

Language ModelingLanguage Modelling

FLARE: Fine-Grained Diagnostic Feedback for LLM Code Refinement

2026-06-02 · Yinsheng Yao, Hongxiang Zhang, Weixi Tong, Tianyi Zhang arxiv

Large language models often generate code with bugs. Existing methods rely on feedback signals such as test failures and self-critiques to iteratively refine the generated code. Such signals are either too coarse-grained…