muatik / naive-bayes-classifier

yet another general purpose naive bayesian classifier.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tokenizer.py doesnt have latest code

pmahend1 opened this issue · comments

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.

I have the same problem