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.
# 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