All Projects → h4iku → bug-localization

h4iku / bug-localization

Licence: MIT license
Source code of the paper "Leveraging textual properties of bug reports to localize relevant source files".

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to bug-localization

ShapeTextureDebiasedTraining
Code and models for the paper Shape-Texture Debiased Neural Network Training (ICLR 2021)
Stars: ✭ 95 (+533.33%)
Mutual labels:  paper
atari-demo
Code for the blog post "Learning Montezuma’s Revenge from a Single Demonstration"
Stars: ✭ 21 (+40%)
Mutual labels:  paper
NLP-Natural-Language-Processing
Projects and useful articles / links
Stars: ✭ 149 (+893.33%)
Mutual labels:  paper
paper annotations
A place to keep track of all the annotated papers.
Stars: ✭ 96 (+540%)
Mutual labels:  paper
modules
The official repository for our paper "Are Neural Nets Modular? Inspecting Functional Modularity Through Differentiable Weight Masks". We develop a method for analyzing emerging functional modularity in neural networks based on differentiable weight masks and use it to point out important issues in current-day neural networks.
Stars: ✭ 25 (+66.67%)
Mutual labels:  paper
ScriptBlockPlus
任意のブロックにスクリプトを追加するプラグインです。
Stars: ✭ 25 (+66.67%)
Mutual labels:  paper
PyTorch-AdaIN-StyleTransfer
This project is an unofficial implementation of the paper: Arbitrary Style Transfer in Real-time with Adaptive Instance Normalization
Stars: ✭ 28 (+86.67%)
Mutual labels:  paper
material-appearance-similarity
Code for the paper "A Similarity Measure for Material Appearance" presented in SIGGRAPH 2019 and published in ACM Transactions on Graphics (TOG).
Stars: ✭ 22 (+46.67%)
Mutual labels:  paper
BookLibrary
Book Library of P&W Studio
Stars: ✭ 13 (-13.33%)
Mutual labels:  paper
batu-gunting-kertas-nuxt
Rock Paper Scissors Game with Artificial Intellegence
Stars: ✭ 50 (+233.33%)
Mutual labels:  paper
Purpur
Purpur is a drop-in replacement for Paper servers designed for configurability, and new fun and exciting gameplay features.
Stars: ✭ 1,224 (+8060%)
Mutual labels:  paper
PaperDownload
知网/万方 论文/期刊批量检索下载
Stars: ✭ 18 (+20%)
Mutual labels:  paper
papers
Summarizing the papers I have read (Japanese)
Stars: ✭ 38 (+153.33%)
Mutual labels:  paper
Hotpur
A fork of Purpur that aims to improve performance and add FabricMC compatibility.
Stars: ✭ 17 (+13.33%)
Mutual labels:  paper
STACP
Joint Geographical and Temporal Modeling based on Matrix Factorization for Point-of-Interest Recommendation - ECIR 2020
Stars: ✭ 19 (+26.67%)
Mutual labels:  paper
AutoInAgda
Proof automation – for Agda, in Agda.
Stars: ✭ 38 (+153.33%)
Mutual labels:  paper
FSL-Mate
FSL-Mate: A collection of resources for few-shot learning (FSL).
Stars: ✭ 1,346 (+8873.33%)
Mutual labels:  paper
best AI papers 2021
A curated list of the latest breakthroughs in AI (in 2021) by release date with a clear video explanation, link to a more in-depth article, and code.
Stars: ✭ 2,740 (+18166.67%)
Mutual labels:  paper
minie
An open information extraction system that provides compact extractions
Stars: ✭ 83 (+453.33%)
Mutual labels:  paper
3d-detection-papers
The papers in this list are about 3d detection, especially those using point clouds.
Stars: ✭ 77 (+413.33%)
Mutual labels:  paper

How to Run

  1. Install Python 3.8+ and clone this repository:

    git clone https://github.com/h4iku/bug-localization.git
  2. Create a venv and install the dependencies:

    cd bug-localization
    python -m venv env
    ./env/Scripts/activate
    python -m pip install -U pip setuptools
    pip install -r requirements.txt

    Also, download and install the spaCy's en_core_web_lg pretrained model and NLTK data. From NLTK, only punkt and averaged_perceptron_tagger are needed that can be downloaded using NLTK Downloader GUI or a Python interpreter:

    >>> import nltk
    >>> nltk.download('punkt')
    >>> nltk.download('averaged_perceptron_tagger')
  3. Download the datasets file from here, and unzip it in the root directory of the cloned repository. You can also download these datasets from the BugLocator and BRTracer repositories. More datasets can be downloaded from the Bench4BL repository.

  4. Check the path of datasets in buglocalizer/datasets.py module and change the value of the DATASET variable to choose different datasets (default values can be aspectj, swt, and zxing, but you can add more).

    Run the main module:

    python buglocalizer/main.py

    All the modules are also independently runnable if it was needed to run them one by one.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].