/bug-severity-prediction

The Automatic Bug Traige (AutoBugTriage) tool allows for the prediction of bug severity at the beginning of the project by using NLP and an organization's historical data.

Primary LanguageJupyter Notebook

Automatic Prediction of Bug Severity

Environment Setup

We recommend running our application in a python virtual environment to ensure the packages required do not conflict with your exisitng python distribution.

Example in Linux

Install virtualenv

$ sudo apt install virtualenv

Create virtual environment in home directory

$ python3 -m venv thesis-env

Activate virtual environment

$ source ~/thesis-env/bin/activate

Install required packages

pip install -r requirements.txt

When done you can use deactivate

$ deactivate

Other Platforms

Please see the following reference site for more information on python virtual environments.

https://docs.python.org/3/tutorial/venv.html