# Learning the Relation between Code Features and Code Transforms with   Structured Prediction

**Authors:** Zhongxing Yu, Matias Martinez, Zimin Chen, Tegawend\'e F. Bissyand\'e,, Martin Monperrus

arXiv: 1907.09282 · 2023-06-06

## TL;DR

This paper introduces a novel structured prediction approach using CRFs to predict AST-level code transforms for automated code evolution, demonstrating improved accuracy over baselines in Java bug repair tasks.

## Contribution

The paper presents the first method for structurally predicting code transforms at the AST node level using CRFs, with a new formal framework and large-scale experimental validation.

## Key findings

- Predicts code transforms with 41-53% top-3 accuracy.
- Outperforms history probability and NMT baselines.
- Synthesizer confirms the usefulness of predicted transforms in high-quality patch generation.

## Abstract

To effectively guide the exploration of the code transform space for automated code evolution techniques, we present in this paper the first approach for structurally predicting code transforms at the level of AST nodes using conditional random fields (CRFs). Our approach first learns offline a probabilistic model that captures how certain code transforms are applied to certain AST nodes, and then uses the learned model to predict transforms for arbitrary new, unseen code snippets. {Our approach involves a novel representation of both programs and code transforms. Specifically, we introduce the formal framework for defining the so-called AST-level code transforms and we demonstrate how the CRF model can be accordingly designed, learned, and used for prediction}. We instantiate our approach in the context of repair transform prediction for Java programs. Our instantiation contains a set of carefully designed code features, deals with the training data imbalance issue, and comprises transform constraints that are specific to code. We conduct a large-scale experimental evaluation based on a dataset of bug fixing commits from real-world Java projects. The results show that when the popular evaluation metric \emph{top-3} is used, our approach predicts the code transforms with an accuracy varying from 41\% to 53\% depending on the transforms. Our model outperforms two baselines based on history probability and neural machine translation (NMT), suggesting the importance of considering code structure in achieving good prediction accuracy. In addition, a proof-of-concept synthesizer is implemented to concretize some repair transforms to get the final patches. The evaluation of the synthesizer on the Defects4j benchmark confirms the usefulness of the predicted AST-level repair transforms in producing high-quality patches.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1907.09282/full.md

## Figures

13 figures with captions in the complete paper: https://tomesphere.com/paper/1907.09282/full.md

## References

113 references — full list in the complete paper: https://tomesphere.com/paper/1907.09282/full.md

---
Source: https://tomesphere.com/paper/1907.09282