π€ AI Summary
This paper addresses two prevalent noise types in Direct Preference Optimization (DPO): low-quality individual samples (point-wise noise) and incorrect preference pairs (pair-wise noise). We propose Dr. DPOβthe first robust DPO framework with both theoretical guarantees and practical efficacy. We theoretically establish that standard DPO inherently possesses distributional robustness, and leverage this insight to design an explicit robust objective. Our method introduces a hyperparameter Ξ²β² to balance exploration and exploitation, and employs adversarial worst-case distribution optimization to achieve strong robustness against pair-wise noise. Theoretical analysis proves convergence and quantifies robustness bounds. Empirical results demonstrate that Dr. DPO consistently improves generation quality and response accuracy on both noisy and clean preference datasets. The implementation is publicly available.
π Abstract
This study addresses the challenge of noise in training datasets for Direct Preference Optimization (DPO), a method for aligning Large Language Models (LLMs) with human preferences. We categorize noise into pointwise noise, which includes low-quality data points, and pairwise noise, which encompasses erroneous data pair associations that affect preference rankings. Utilizing Distributionally Robust Optimization (DRO), we enhance DPO's resilience to these types of noise. Our theoretical insights reveal that DPO inherently embeds DRO principles, conferring robustness to pointwise noise, with the regularization coefficient $eta$ playing a critical role in its noise resistance. Extending this framework, we introduce Distributionally Robustifying DPO (Dr. DPO), which integrates pairwise robustness by optimizing against worst-case pairwise scenarios. The novel hyperparameter $eta'$ in Dr. DPO allows for fine-tuned control over data pair reliability, providing a strategic balance between exploration and exploitation in noisy training environments. Empirical evaluations demonstrate that Dr. DPO substantially improves the quality of generated text and response accuracy in preference datasets, showcasing enhanced performance in both noisy and noise-free settings. The code is available at https://github.com/junkangwu/Dr_DPO.