Add comments

This commit is contained in:
ricca 2023-10-03 19:07:57 +02:00
parent 5c4e412a35
commit e9f3d61643

View File

@ -1,6 +1,9 @@
"""
Implementation from scratch of a Multinomial Naive Bayes Classifier.
The algorithm is trained and tested on the twenty_newsgroup dataset from sklearn to perform text classification
Here the Wikipedia page to understand the theory behind this kind of probabilistic models:
https://en.wikipedia.org/wiki/Naive_Bayes_classifier
"""