Code-Optimise: Self-Generated Preference Data for Correctness and Efficiency
Leonidas Gee, Milan Gritta, Gerasimos Lampouras, Ignacio Iacobacci
TL;DR
Code-Optimise tackles the dual objective of code correctness and runtime efficiency by generating self-supervised preference data and training with Direct Preference Optimisation. It builds a lightweight, on-policy pipeline (Sampling, Annotation, Optimisation) and uses Dynamic Solution Selection to reduce overfitting without needing proprietary data. Across MBPP and HumanEval, DPO improves $pass@k$, reduces runtime by up to 6% (in-domain MBPP) and 3% (out-of-domain), and shortens generated code by up to 48% (MBPP) and 23% (HumanEval). This work demonstrates a data-efficient route to multi-objective code generation and highlights the importance of training signal design and solution selection for robust, efficient code synthesis.
Abstract
Code Language Models have been trained to generate accurate solutions, typically with no regard for runtime. On the other hand, previous works that explored execution optimisation have observed corresponding drops in functional correctness. To that end, we introduce Code-Optimise, a framework that incorporates both correctness (passed, failed) and runtime (quick, slow) as learning signals via self-generated preference data. Our framework is both lightweight and robust as it dynamically selects solutions to reduce overfitting while avoiding a reliance on larger models for learning signals. Code-Optimise achieves significant improvements in pass@k while decreasing the competitive baseline runtimes by an additional 6% for in-domain data and up to 3% for out-of-domain data. As a by-product, the average length of the generated solutions is reduced by up to 48% on MBPP and 23% on HumanEval, resulting in faster and cheaper inference. The generated data and codebase is open-sourced at https://github.com/huawei-noah/HEBO/tree/Code_Optimise.
