simplenb:使用朴素贝叶斯进行简单的 Python 文本分类

时间:2024-07-14 03:24:45
【文件属性】:

文件名称:simplenb:使用朴素贝叶斯进行简单的 Python 文本分类

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-14 03:24:45

Python

simplenb - Python 朴素贝叶斯分类器 使用朴素贝叶斯实现的简单文本分类基于博客 您可以将它用于任何基本的文本分类,例如 垃圾邮件检测 自动为项目分配类别 情绪分析 以及更多.. 要求 - Python 2.7+ (other version will probably work too) - Numpy (http://www.scipy.org/install.html) 安装 pip install simplenb 示例用法 去看看 ,你应该很容易理解它。 下面是 test.py 中的一个例子 from simplenb import naivebayes nb = naivebayes.NaiveBayes() nb.stop_word = ["the", "to", "you", "he", "only", "if", "it"] nb.train("spa


【文件预览】:
simplenb-master
----test.py(436B)
----simplenb()
--------naivebayes.py(3KB)
--------__init__.py(0B)
----LICENSE(1KB)
----setup.cfg(40B)
----setup.py(649B)
----README.md(1KB)
----.gitignore(31B)

网友评论