Skip to content

Code Snippet Recommendation from Stack Overflow Post

Notifications You must be signed in to change notification settings

beyondacm/Que2Code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

I Know What You Are Searching For: Code Snippet Recommendation from Stack Overflow Posts

Workflow of Que2Code

Stack Overflow has been heavily used by software developers to seek programming-related information. Typically, when developers encounter a technical problem, they formulate the problem as a query and use a search engine to obtain a list of possible relevant posts that may containuseful solutions to their problem. However, this kind of solution-seeking experience can be difficult and painful because the Query Mistmatch and Information Overload problems. To alleviate these challenges, in this work we present a query-driven code recommendation tool, named Que2Code, that identifies the best code snippets for a user query from Stack Overflow posts. The material used in our can be accessed with:

Our model contains two stages:

  1. Semantically-Equivalent Question Retrieval
  2. Best Code Snippet Recommendation

Our model has two sub-components, i.e., QueryRewriter and CodeSelector. QueryRewriter can qualitatively retrieve semantically-equivalent questions, and the CodeSelector can quantitatively rank the most relevant code snippets to the top of the recommendation candidates.

QueryRewriter

Workflow of Que2Code In the first stage, our QueryRewriter component tackles the query mistmatch problem. The idea of QueryRewriter is to use a rewritten version of a query question to cover a variety of different forms of semantically equivalent expressions. In particular, we first collect the duplicate question pairs from Stack Overflow, because duplicate questions can be considered as semantically-equivalent questions of various user descriptions. We then frame this problem as a sequence-to-sequence learning problem, which directly maps a technical question to its corresponding duplicate question. We train a text-to-text transformer, named QueryRewriter, by using the collected duplicate question pairs.

To train the QueryRewriter, please download our duplicate question dataset from the following link: Dataset Download Link

cd QueryRewriter/train/
python prepare_data.py
python train.py

Or, we have released the pre-trained QueryRewriter model as described in the paper. You can use the following link to download our pretrained model: Pretrained Model Download Link

The QueryRewriter can be easily used with the following way:

query = "how to iterate the list in python"
# Initialize the model 
QR_model = QueryRewriter()
# Get the embedding of a query
query_vec = QR_model.encode(query)
# Get the paraphrase questions of a query
paraphrase_q = QR_model.paraphrase(query)

CodeSelector

Workflow of Que2Code In the second stage, our CodeSelector component tackles the information overload challenge. To do this, we first collect all the answers of the semantic relevant questions retrieved in the first stage. We then extract all the code snippets from the collected answer posts to construct a candidate code snippets pool. For the given query question, we pair it with each of the code snippet candidates. We then fit them into the trained CodeSelector to estimate their matching scores and judge the preference orders. CodeSelector can then select the best code snippet from the code snippet candidates via pairwise comparison. Our approach is fully data-driven and does not rely on hand-crafted rules.

To train the CodeSelector, please download our label query-code dataset from the following link: Dataset Download Link. Then train the model with the following scripts:

cd CodeSelector/train/
python data_prepare.py
python train.py

Or, we have aslo released the pre-trained CodeSelector model as described in the paper. You can use the following link to download our pretrained model: Pretrained Model Download Link

Our CodeSelector can also be used easily as following:

# Initilize the CodeSelector Model
cs_model = CodeSelector()
# Estimate the matching score between a query and a code snippet
score = cs_model.get_score(query, code_snippet)

About

Code Snippet Recommendation from Stack Overflow Post

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages