Python下开源可持久化朴素贝叶斯分类库:simplebayes
jopen
10年前
simplebayes是Python下开源可持久化朴素贝叶斯分类库。
This work is heavily inspired by the python "redisbayes" module found here: [https://github.com/jart/redisbayes] and [https://pypi.python.org/pypi/redisbayes] I've elected to write this to alleviate the network/time requirements when using the bayesian classifier to classify large sets of text, or when attempting to train with very large sets of sample data.
Installation
sudo pip install simplebayes
Basic Usage
import simplebayes bayes = simplebayes.SimpleBayes() bayes.train('good', 'sunshine drugs love sex lobster sloth') bayes.train('bad', 'fear death horror government zombie') assert bayes.classify('sloths are so cute i love them') == 'good' assert bayes.classify('i would fear a zombie and love the government') == 'bad' print bayes.score('i fear zombies and love the government')