Scikit-学习多标签分类

时间:2016-06-16 12:05:26

标签: python scikit-learn multilabel-classification

我正在尝试使用Scikit-learn来学习文本的多标签分类,我正在尝试使用维基百科文章作为训练数据来修改scikit附带的初始示例教程之一用于语言分类。我试图在下面实现这个,但是代码仍然为每个我希望最后一次预测返回的地方返回一个标签fr,en

任何人都可以就正确的多标签分类方法提出建议。

import sys

from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.feature_extraction.text import TfidfTransformer
from sklearn.datasets import make_multilabel_classification
from sklearn.preprocessing import LabelBinarizer

from sklearn.svm import LinearSVC
from sklearn.pipeline import Pipeline
from sklearn.datasets import load_files
from sklearn.cross_validation import train_test_split
from sklearn import metrics
from sklearn.multiclass import OneVsRestClassifier
#change model_selection to cross_validation

# The training data folder must be passed as first argument - This uses the example wiki language data files
languages_data_folder = sys.argv[1]
dataset = load_files(languages_data_folder)

# Split the dataset in training and test set:
docs_train, docs_test, y_train, y_test = train_test_split(
dataset.data, dataset.target, test_size=0.5)


#pipeline
clf = Pipeline([
('vectorizer', CountVectorizer(ngram_range=(1,2))),
('tfidf', TfidfTransformer()),
('clf', OneVsRestClassifier(LinearSVC())),
])
    target_names=dataset.target_names



# TASK: Fit the pipeline on the training set
clf.fit(docs_train, y_train)

# TASK: Predict the outcome on the testing set in a variable named y_predicted
y_predicted = clf.predict(docs_test)

print target_names


# Predict the result on some short new sentences:
sentences = [
    u'This is a language detection test.',
    u'Ceci est un test de d\xe9tection de la langue.',
    u'Dies ist ein Test, um die Sprache zu erkennen.',
    u'Bonjour Mon ami. This is a language detection test.',

]
predicted = clf.predict(sentences)

for s, p in zip(sentences, predicted):
    print(u'The language of "%s" is "%s"' % (s, target_names[p]))

退货 -

“这是语言检测测试”的语言。是“en”

“Ceci est un testdedétectiondela langue”的语言。是“fr”

“Dies ist ein Test,um die Sprache zu erkennen”的语言。是“de”

“Bonjour Mon ami的语言。这是一种语言检测测试。”是“en”

1 个答案:

答案 0 :(得分:1)

您可以使用scikit-multilearn进行多标签分类,它是一个建立在scikit-learn之上的库。对于语言,标签之间的相关性并不重要,因此二进制分类器应该非常适合。您可以在documentation中找到如何进行分类的示例,但在您的情况下,您需要替换的是:

('clf', OneVsRestClassifier(LinearSVC())),

('clf', BinaryRelevance(LinearSVC())),

并在顶部添加导入:

from skmultilearn.problem_transform import BinaryRelevance

请记住首先安装scikit-multilearn!