Skip to content

Instantly share code, notes, and snippets.

View kennyballou's full-sized avatar
:(){ :|:& };:

Kenny Ballou kennyballou

:(){ :|:& };:
View GitHub Profile
#!/usr/bin/env python
'''Sample Naive Bayes Classifier
'''
import collections
import math
import sys
__author__ = 'Krishnamurthy Koduvayur Viswanathan'
__credits__ = ['Kenny Ballou',]