https://github.com/parvezmrobin/bugsplainer-webapp
Web application version of the Bugsplainer tool to explain bugs in software code in a human-friendly way
https://github.com/parvezmrobin/bugsplainer-webapp
bug debugging-tool deep-learning transformers
Last synced: 12 months ago
JSON representation
Web application version of the Bugsplainer tool to explain bugs in software code in a human-friendly way
- Host: GitHub
- URL: https://github.com/parvezmrobin/bugsplainer-webapp
- Owner: parvezmrobin
- Created: 2022-09-22T04:03:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T09:54:32.000Z (over 2 years ago)
- Last Synced: 2025-02-07T16:43:42.415Z (about 1 year ago)
- Topics: bug, debugging-tool, deep-learning, transformers
- Language: Python
- Homepage: https://bugsplainer.research.cs.dal.ca/
- Size: 112 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bugsplainer Webapp
## Installation
Make sure you have `node`, `yarn` @ 1.x, `python` >= 3.7 and `CUDA` @ 1.13 installed in your machine/container.
Then, to install the node packages, run
```sh
yarn install
```
To install the python packages, run
```sh
pip install torch==1.11.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
pip install -r requirements.txt
```
## Run the application
Set the env variables as
```sh
FLASK_APP=server:app;FLASK_ENV=development;PYTHON_EXE=.\venv\Scripts\python
```
Run both frontend and backend
```sh
yarn dev
```