我使用的管道非常类似于给定in this example的管道:
>>> text_clf = Pipeline([('vect', CountVectorizer()),
... ('tfidf', TfidfTransformer()),
... ('clf', MultinomialNB()),
... ])
我使用GridSearchCV
在参数网格上找到最佳估算器。
但是,我想从get_feature_names()
使用CountVectorizer()
方法获取训练集的列名。如果没有在管道外实现CountVectorizer()
,这可能吗?
答案 0 :(得分:9)
使用get_params()
功能,您可以访问管道的各个部分及其各自的内部参数。以下是访问'vect'
text_clf = Pipeline([('vect', CountVectorizer()),
('tfidf', TfidfTransformer()),
('clf', MultinomialNB())]
print text_clf.get_params()['vect']
收益率(对我而言)
CountVectorizer(analyzer=u'word', binary=False, decode_error=u'strict',
dtype=<type 'numpy.int64'>, encoding=u'utf-8', input=u'content',
lowercase=True, max_df=1.0, max_features=None, min_df=1,
ngram_range=(1, 1), preprocessor=None, stop_words=None,
strip_accents=None, token_pattern=u'(?u)\\b\\w\\w+\\b',
tokenizer=None, vocabulary=None)
我还没有将管道安装到此示例中的任何数据,因此此时调用get_feature_names()
将返回错误。
答案 1 :(得分:3)
仅供参考
The estimators of a pipeline are stored as a list in the steps attribute:
>>>
>>> clf.steps[0]
('reduce_dim', PCA(copy=True, n_components=None, whiten=False))
and as a dict in named_steps:
>>>
>>> clf.named_steps['reduce_dim']
PCA(copy=True, n_components=None, whiten=False)