Skip to content

vamc-stash/Naive-Bayes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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