SEDec 2, 2020

CRaDLe: Deep Code Retrieval Based on Semantic Dependency Learning

arXiv:2012.01028v255 citationsHas Code
AI Analysis

This work provides an incremental improvement for programmers seeking to reuse existing code snippets by improving the accuracy of code retrieval.

This paper addresses the problem of retrieving relevant code snippets from open-source repositories given a natural language query. The authors propose CRaDLe, a novel approach that incorporates statement-level semantic dependency information to learn unified vector representations for code and descriptions, significantly outperforming state-of-the-art methods.

Code retrieval is a common practice for programmers to reuse existing code snippets in open-source repositories. Given a user query (i.e., a natural language description), code retrieval aims at searching for the most relevant ones from a set of code snippets. The main challenge of effective code retrieval lies in mitigating the semantic gap between natural language descriptions and code snippets. With the ever-increasing amount of available open-source code, recent studies resort to neural networks to learn the semantic matching relationships between the two sources. The statement-level dependency information, which highlights the dependency relations among the program statements during the execution, reflects the structural importance of one statement in the code, which is favorable for accurately capturing the code semantics but has never been explored for the code retrieval task. In this paper, we propose CRaDLe, a novel approach for Code Retrieval based on statement-level semantic Dependency Learning. Specifically, CRaDLe distills code representations through fusing both the dependency and semantic information at the statement level and then learns a unified vector representation for each code and description pair for modeling the matching relationship. Comprehensive experiments and analysis on real-world datasets show that the proposed approach can accurately retrieve code snippets for a given query and significantly outperform the state-of-the-art approaches to the task.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes