muatik / naive-bayes-classifier

yet another general purpose naive bayesian classifier.
MIT License
172 stars 72 forks source link

tokenizer.py doesnt have latest code #12

Open pmahend1 opened 6 years ago

pmahend1 commented 6 years ago

I installed naiveBayesClassifier by pip3 install naiveBayesClassifier tokenizer.py doesnt have latest github code. Is the current github not in sync with pip? Code I have was

#tokenizer.py
def tokenize(text):
    return text.lower().split(' ')

AttributeError: module 'naiveBayesClassifier.tokenizer' has no attribute 'tokenizer'

I have copied latest code from github for now.

ramizdemiurge commented 6 years ago

I have the same problem