Skip to content

sign-language-recognition/stackoverflow-query

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 

Repository files navigation

stackoverflow-query

This program is aimed towards improving the search results in StackOverflow. It provides the user with most relevant questions sorted based on their text similarity with the query. It also provides the list of answers, to the selected question, based on the analysis of the sentiment of the comments.

How to run the code?

All the instructions to run the code are provided within the python notebook: StackOverflowSearch.ipynb

Start with downloading required packages (stackapi and twython) and importing modules. We also define constants like ‘k’ for limiting number of solutions and SITE that refers to ‘Stack Overflow’.

We have tried to make the workflow of our program to match that of the StackOverflow website itself. Therefore, we ask the user for search query. Once we get the query, the program extracts tags or keywords from it. These tags then are used to get questions with the help of StackAPI. Here in the program, we have printed the list of titles of all the questions. These question titles will be further sorted based on their text similarity score with the user entered query. Then these will be finally displayed to the user in sorted order. As per the website, the output mainly includes the question title, and question body. We also display the question ID in the program to help the user select a question. Now, the user selects the question he or she wants the answer for.

We start by fetching list of all the answers to the question selected by the user using StackAPI. We apply filter to obtain the comment body in the JSON object received. Then we analyse the comments for their sentiments and obtain a score for each answer. We further sort these answers based on the score. Finally, we display the question and corresponding list of answers, with their IDs and body, sorted as they’d appear on the website.

Check the idea, presentation, and video for more details.

About

Improving the search results in StackOverflow using NLP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%