gpt4 book ai didi

python - 从 L1 正则化逻辑回归中恢复命名特征

转载 作者:行者123 更新时间:2023-11-30 09:55:54 28 4
gpt4 key购买 nike

我有以下管道:

sg = Pipeline([('tfidf', TfidfVectorizer()),                                                                                                                                            
('normalize', Normalizer()),
('l1', LogisticRegression(penalty="l1", dual=False))])

执行拟合后,我想提取对应的标记到非零权重。

我该怎么做?

最佳答案

features = pipeline.named_steps['tfidf'].get_feature_names()
print(features[pipeline.named_steps['l1'].coef_ != 0])

参见TfidfTransformer docs , LogisticRegression docsunmerged improved pipeline docs here

关于python - 从 L1 正则化逻辑回归中恢复命名特征,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30055565/

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