Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 701 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 701 Bytes

Naive-Bayes

This repo implements Naive-Bayes and Gaussian Naive Bayes Classifier algorithms from scratch in python.

Please read this blog for explaination regarding working of the algorithm.

Installations

# Create and activate new virtual environment (optional)
python -m venv nb-venv
source nb-venv/bin/activate

# To deactivate virtual environment knn
deactivate

# Install requirements
pip install -r requirements.txt