Platform for Machine Learning projects on Software Engineering
Перейти к файлу
Marco Castelluccio 855c706f23 Support regressions history changes 2019-04-04 17:28:39 +02:00
bugbug Support regressions history changes 2019-04-04 17:28:39 +02:00
scripts Calculate important components based on their past occurrences rather than having a hardcoded list 2019-03-18 20:18:25 +01:00
tests Remove unneeded debugging print statement from test 2019-03-11 21:04:06 +01:00
.gitignore Add some Python packaging artifacts to .gitignore 2019-03-11 15:30:29 +01:00
.isort.cfg Enable several flake8 checkers 2018-09-21 16:45:04 +02:00
.travis.yml Set boto config to /dev/null to avoid Travis problems 2019-01-28 22:20:56 +01:00
CODE_OF_CONDUCT.md Add Mozilla Code of Conduct (#237) 2019-03-30 16:01:34 +01:00
LICENSE First commit 2018-03-11 20:12:35 +00:00
MANIFEST.in Include labels in package 2018-11-24 00:32:41 +01:00
README.md Add firefoxtree extension to list of needed Mercurial extensions 2019-03-19 00:58:04 +01:00
VERSION Version 0.0.9 2019-04-03 17:37:13 +02:00
comment_level_labeler.py Format with f-strings instead of .format (#85) 2019-01-20 22:30:34 +01:00
requirements.txt Update libmozdata from 0.1.50 to 0.1.52 (#243) 2019-04-03 13:00:03 +02:00
run.py Add assignee model to run.py (#242) 2019-04-03 11:50:38 +02:00
setup.cfg Enable several flake8 checkers 2018-09-21 16:45:04 +02:00
setup.py Load URL requirements too 2018-12-14 00:01:27 +01:00
test-requirements.txt Update pytest from 4.3.1 to 4.4.0 (#239) 2019-04-01 14:10:40 +02:00

README.md

bugbug

Contributing

Discussions happen in #bugbug on irc.mozilla.org.

  1. Issues marked as good first issue are self-contained enough that a contributor should be able to work on them.
  2. Issues marked as reserved-for-beginners are reserved for people who have never contributed to the project before.
  3. Issues are to be considered as not assigned, until there is a PR linked to them.

Classifiers

  • bug vs feature - Bugs on Bugzilla aren't always bugs. Sometimes they are feature requests, refactorings, and so on. The aim of this classifier is to distinguish between bugs that are actually bugs and bugs that aren't. The dataset currently contains 2110 bugs, the accuracy of the current classifier is ~93% (precision ~95%, recall ~94%).

  • defect vs feature vs task - Extension of the previous classifier to detect differences also between feature requests and development tasks.

  • component - The aim of this classifier is to assign product/component to (untriaged) bugs.

  • regression vs non-regression - Bugzilla has a regression keyword to identify bugs that are regressions. Unfortunately it isn't used consistently. The aim of this classifier is to detect bugs that are regressions.

  • tracking - The aim of this classifier is to detect bugs to track.

  • uplift - The aim of this classifier is to detect bugs for which uplift should be approved and bugs for which uplift should not be approved.

  • devdocneeded - The aim of this classifier is to detect bugs which should be documented for developers.

  • qaneeded - The aim of this classifier is to detect bugs that would need QA verification.

Setup

Run pip install -r requirements.txt and pip install -r test-requirements.txt

If you update the bugs database, run xz -v9 -k data/bugs.json. If you update the commits database, run xz -v9 -k data/commits.json.

Usage

Run the run.py script to perform training / classification. The first time run.py is executed, the --train argument should be used to automatically download databases containing bugs and commits data.

Running the repository mining script

  1. Clone https://hg.mozilla.org/mozilla-central/.
  2. Run ./mach vcs-setup in the directory where you have cloned mozilla-central.
  3. Enable the pushlog, hgmo and mozext extensions. For example, if you are on Linux, add the following to the extensions section of the ~/.hgrc file:
    pushlog = ~/.mozbuild/version-control-tools/hgext/pushlog
    hgmo = ~/.mozbuild/version-control-tools/hgext/hgmo
    mozext = ~/.mozbuild/version-control-tools/hgext/mozext
    firefoxtree = ~/.mozbuild/version-control-tools/hgext/firefoxtree
    
  4. Run the repository.py script, with the only argument being the path to the mozilla-central repository.

Note: the script will take a long time to run (on my laptop more than 7 hours). If you want to test a simple change and you don't intend to actually mine the data, you can modify the repository.py script to limit the number of analyzed commits. Simply add limit=1024 to the call to the log command.

Structure of the project

  • bugbug/labels contains manually collected labels;
  • bugbug/db.py is an implementation of a really simple JSON database;
  • bugbug/bugzilla.py contains the functions to retrieve bugs from the Bugzilla tracking system;
  • bugbug/repository.py contains the functions to mine data from the mozilla-central (Firefox) repository;
  • bugbug/bug_features.py contains functions to extract features from bug/commit data;
  • bugbug/model.py contains the base class that all models derive from;
  • bugbug/models contains implementations of specific models;
  • bugbug/nn.py contains utility functions to include Keras models into a scikit-learn pipeline;
  • bugbug/utils.py contains misc utility functions;
  • bugbug/nlp contains utility functions for NLP;
  • bugbug/labels.py contains utility functions for handling labels;
  • bugbug/bug_snapshot.py contains a module to play back the history of a bug.