RoboticsClubIITJ / ML-DL-implementation

An implementation of ML and DL algorithms from scratch in python using nothing but NumPy and Matplotlib.
BSD 3-Clause "New" or "Revised" License
47 stars 68 forks source link

Implement Complement Naive Bayes and Categorical Naive Bayes Models #163

Open kwanit1142 opened 3 years ago

kwanit1142 commented 3 years ago

Resources :-

https://scikit-learn.org/stable/modules/naive_bayes.html https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.ComplementNB.html#sklearn.naive_bayes.ComplementNB https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.CategoricalNB.html#sklearn.naive_bayes.CategoricalNB https://www.geeksforgeeks.org/complement-naive-bayes-cnb-algorithm/