Text Classifier, Text Classification
Project description
pytextclassifier
pytextclassifier, Python Text Classifier. It can be applied to the fields of sentiment polarity analysis, text risk classification and so on, and it supports multiple classification algorithms and clustering algorithms.
文本分类器,提供多种文本分类和聚类算法,支持文本极性情感分类,文本风险类型分类等文本分类和聚类应用。兼容python2.7和python3。
Guide
Feature
pytextclassifier is a python Open Source Toolkit for text classification. The goal is to implement text analysis algorithm, so as to achieve the use in the production environment.
pytextclassifier has the characteristics of clear algorithm, high performance and customizable corpus.
Functions:
Classifier
- LogisticRegression
- Random Forest
- Decision Tree
- K-Nearest Neighbours
- Naive bayes
- Xgboost
- Support Vector Machine(SVM)
- Xgboost
- Xgboost_lr
- MLP
- Ensemble
- Stack
- TextCNN
- TextRNN
- Fasttext
Evaluate
- Precision
- Recall
- F1
Test
- Chi-square test
Cluster
- MiniBatchKmeans
While providing rich functions, pytextclassifier internal modules adhere to low coupling, model adherence to inert loading, dictionary publication, and easy to use.
Install
- Requirements and Installation
git clone https://github.com/shibing624/pytextclassifier.git
pip3 install -r requirements.txt
Usage
文本分类,模型训练,保存,预测,测试
from pytextclassifier import TextClassifier
m = TextClassifier()
data = [
('education', 'Student debt to cost Britain billions within decades'),
('education', 'Chinese education for TV experiment'),
('sports', 'Middle East and Asia boost investment in top level sports'),
('sports', 'Summit Series look launches HBO Canada sports doc series: Mudhar')
]
m.train(data)
r = m.predict(['Abbott government spends $8 million on higher education media blitz',
'Middle East and Asia boost investment in top level sports'])
print(r) # ['education' 'sports']
m.save()
del m
new_m = TextClassifier()
new_m.load()
predict_label = new_m.predict(['Abbott government spends $8 million on higher education media blitz'])
print(predict_label) # ['education']
predict_label = new_m.predict(['Abbott government spends $8 million on higher education media blitz',
'Middle East and Asia boost investment in top level sports'])
print(predict_label) # ['education', 'sports']
test_data = [
('education', 'Abbott government spends $8 million on higher education media blitz'),
('sports', 'Middle East and Asia boost investment in top level sports'),
]
f1 = new_m.test(test_data)
print(f1) # 1.0
output:
['education' 'sports']
save output/vectorizer.pkl ok.
save output/model.pkl ok.
['education']
['education' 'sports']
1.0
兼容中英文语料的文本分类,中文语料分类示例chinese_text_demo.py
from pytextclassifier import TextClassifier
m = TextClassifier()
data = [
('education', '名师指导托福语法技巧:名词的复数形式'),
('education', '中国高考成绩海外认可 是“狼来了”吗?'),
('sports', '图文:法网孟菲尔斯苦战进16强 孟菲尔斯怒吼'),
('sports', '四川丹棱举行全国长距登山挑战赛 近万人参与'),
('sports', '米兰客场8战不败国米10年连胜')
]
m.train(data)
r = m.predict(['福建春季公务员考试报名18日截止 2月6日考试',
'意甲首轮补赛交战记录:米兰客场8战不败国米10年连胜'])
print(r) # ['education' 'sports']
m.save()
del m
new_m = TextClassifier()
new_m.load()
predict_label = new_m.predict(['福建春季公务员考试报名18日截止 2月6日考试'])
print(predict_label) # ['education']
predict_label = new_m.predict(['福建春季公务员考试报名18日截止 2月6日考试',
'意甲首轮补赛交战记录:米兰客场8战不败国米10年连胜'])
print(predict_label) # ['education', 'sports']
test_data = [
('education', '福建春季公务员考试报名18日截止 2月6日考试'),
('sports', '意甲首轮补赛交战记录:米兰客场8战不败国米10年连胜'),
]
res = new_m.test(test_data)
print(res) # 1.0
output:
['education' 'sports']
save vectorizer.pkl ok.
save model.pkl ok.
['education']
['education' 'sports']
1.0
自定义训练深度模型
- Preprocess with segment(optional)
cd pytextclassifier
python3 preprocess.py
- Train model
you can change model with edit config.py
and train model.
python3 train.py
- Predict with test data
python3 infer.py
Contact
- Issue(建议):
- 邮件我:xuming: xuming624@qq.com
- 微信我: 加我微信号:xuming624, 备注:个人名称-NLP 进NLP交流群。
Cite
如果你在研究中使用了pytextclassifier,请按如下格式引用:
@software{pytextclassifier,
author = {Xu Ming},
title = {pytextclassifier: A Tool for Text Classifier},
year = {2021},
url = {https://github.com/shibing624/pytextclassifier},
}
License
授权协议为 The Apache License 2.0,可免费用做商业用途。请在产品说明中附加pytextclassifier的链接和授权协议。
Contribute
项目代码还很粗糙,如果大家对代码有所改进,欢迎提交回本项目,在提交之前,注意以下两点:
- 在
tests
添加相应的单元测试 - 使用
python setup.py test
来运行所有单元测试,确保所有单测都是通过的
之后即可提交PR。
Reference
- SentimentPolarityAnalysis
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.