I recently noticed that there's a new entry in the list of languages, e.g. when submitting a solution. It is labelled 'Python 3.2.3 nbc'. Does anyone know what it means?
Regards
Daft
created
last reply
- 4
replies
- 3.0k
views
- 4
users
- 2
likes
- 1
link
I recently noticed that there's a new entry in the list of languages, e.g. when submitting a solution. It is labelled 'Python 3.2.3 nbc'. Does anyone know what it means?
Regards
Daft
I just googled it cause I was courious too: nbc means naive bayes classifier, a module provided by the native language toolkit (NLTK). The nbc-algorithm is based on the bayes-theorem (therefore the name) to calculate probabilities wether a certain condition is true or false, e. g. the prob of an email containing the word "viagra" beeing spam.
The module description is here:
http://nltk.org/api/nltk.classify.html#module-nltk.classify.naivebayes42
There also is a large wikipediaentry about nbc...