gpt4 book ai didi

python - 向 Sklearn 分类器添加特征

转载 作者:太空宇宙 更新时间:2023-11-03 13:41:35 24 4
gpt4 key购买 nike

我正在构建一个 SGDClassifier,并使用一个 tfidf 转换器。除了从 tfidf 创建的特征之外,我还想添加其他特征,如文档长度或其他评级。如何将这些功能添加到功能集中?以下是分类器在管道中的构建方式:

data = fetch_20newsgroups(subset='train', categories=None)
pipeline = Pipeline([
('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', SGDClassifier()),
])
parameters = {
'vect__max_df': (0.5, 0.75, 1.0),
'vect__max_features': (None, 5000, 10000, 50000),
'vect__ngram_range': ((1, 1), (1, 2)), # unigrams or bigrams
'tfidf__use_idf': (True, False),
}

grid_search = GridSearchCV(pipeline, parameters, n_jobs=-1, verbose=1)
grid_search.fit(data.data, data.target)
print(grid_search.best_score_)

最佳答案

您可以使用特征联合 http://scikit-learn.org/stable/modules/pipeline.html#featureunion-composite-feature-spaces

文档中有一个很好的例子 https://scikit-learn.org/0.18/auto_examples/hetero_feature_union.html我认为这完全符合您的要求。请参阅 TextStats 转换器。

[更新:示例用于 scikit learn =< 0.18]

问候,

关于python - 向 Sklearn 分类器添加特征,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30055303/

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