Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 891 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 891 Bytes

benford-image

Getting started

Clone this repository git clone <repo-link>

Check Python version. This project uses Python 3.10 python3 --version

Setup virtual environment python3 -m venv env

Activate virtual environment source env/bin/activate

Install dependencies pip install -r requirements.txt

Create the data directory mkdir data

Run the Jupiter notebook jupyter notebook

Open the notebook in your browser http://localhost:8888/notebooks/benford-image.ipynb

If you update the dependencies, update the requirements.txt file pip freeze > requirements.txt

Deactivate virtual environment deactivate

Usage

  • Copy images to the data folder
  • Run the Jupiter notebook

Branching

  • main branch requires PR.
  • To contribute, create a branch as username_feature/bug/patch. For example debanshu_csv-support.