gpt4 book ai didi

python - 如何为多标签分类器/一个与其余分类器挑选 sklearn 管道?

转载 作者:行者123 更新时间:2023-12-01 15:33:14 28 4
gpt4 key购买 nike

我正在尝试使用 one vs rest 分类器包装器创建多标签分类器。

我为 TFIDF 和分类器使用了管道。

拟合管道时,我必须按类别遍历我的数据,然后每次都拟合管道以对每个类别进行预测。

现在,我想像通常使用 pickle 或 joblib 导出拟合模型一样导出它。

例子:

pickle.dump(clf,'clf.pickle')

如何使用管道执行此操作?即使我对管道进行了 pickle,每次我想要预测新关键字时是否仍然需要拟合管道?

示例:

pickle.dump(pipeline,'pipeline.pickle')
pipeline = pickle.load('pipeline.pickle')

for category in categories:
pipeline.fit(X_train, y_train[category])
pipeline.predict(['kiwi'])
print (predict)

如果我在加载管道后跳过 pipeline.fit(X_train, y_train[category]),我只会在预测中得到一个值数组。如果我适合管道,我会得到一个三值数组。

另外,如何将网格搜索合并到我的导出管道中?

原始数据

keyword        class1 class2 class3
"orange apple" 1 0 1
"lime lemon" 1 0 0
"banana" 0 1 0

categories = ['class1','class2','class3']

流水线

SVC_pipeline = Pipeline([
('tfidf', TfidfVectorizer(stop_words=stop_words)),
('clf', OneVsRestClassifier(LinearSVC(), n_jobs=1)),
])

Gridsearch(不知道如何将其合并到管道中)

parameters = {'tfidf__ngram_range': [(1, 1), (1, 2)],
'tfidf__use_idf': (True, False),
'tfidf__max_df': [0.25, 0.5, 0.75, 1.0],
'tfidf__max_features': [10, 50, 100, 250, 500, 1000, None],
'tfidf__stop_words': ('english', None),
'tfidf__smooth_idf': (True, False),
'tfidf__norm': ('l1', 'l2', None),
}

grid = GridSearchCV(SVC_pipeline, parameters, cv=2, verbose=1)
grid.fit(X_train, y_train)

拟合管道

for category in categories:
print('... Processing {}'.format(category))

SVC_pipeline.fit(X_train, y_train[category])

# compute the testing accuracy
prediction = SVC_pipeline.predict(X_test)
print('Test accuracy is {}'.format(accuracy_score(y_test[category], prediction)))

最佳答案

OneVsRestClassifier 在内部适合每个类的一个分类器。因此,您不应该像在

中那样为每个类安装管道
for category in categories:
pipeline.fit(X_train, y_train[category])
pipeline.predict(['kiwi'])
print (predict)

你应该这样做

SVC_pipeline = Pipeline([
('tfidf', TfidfVectorizer()), #add your stop_words
('clf', OneVsRestClassifier(LinearSVC(), n_jobs=1)),
])
SVC_pipeline.fit(["apple","boy","cat"],np.array([[0,1,1],[1,1,0],[1,1,1]]))

您现在可以使用

保存模型
pickle.dump(SVC_pipeline,open('pipeline.pickle', 'wb'))   

稍后您可以加载模型并使用

obj = pickle.load(open('pipeline.pickle', 'rb'))
obj.predict(["apple","boy","cat"])

在将它们传递给 fit 方法之前,您可以使用 MultiLabelBinarizer 将多类标签二值化

示例:

from sklearn.preprocessing import MultiLabelBinarizer
y = [['c1','c2'],['c3'],['c1'],['c1','c3'],['c1','c2','c3']]
mb = MultiLabelBinarizer()
y_encoded = mb.fit_transform(y)
SVC_pipeline.fit(["apple","boy","cat", "dog", "rat"], y_encoded)

使用网格搜索(示例)

grid = GridSearchCV(SVC_pipeline, {'tfidf__use_idf': (True, False)}, cv=2, verbose=1)
grid.fit(["apple","boy","cat", "dog", "rat"], y_encoded)
# Save the pipeline
pickle.dump(grid,open('grid.pickle', 'wb'))
# Later load it back and make predictions
grid_obj = pickle.load(open('grid.pickle', 'rb'))
grid_obj.predict(["apple","boy","cat", "dog", "rat"])

关于python - 如何为多标签分类器/一个与其余分类器挑选 sklearn 管道?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52434568/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com