2016-07-14 8 views
2

私はsklearn PipelineとFeatureUnionを使ってテキストファイルからフィーチャを作成していますが、フィーチャ名を出力したいと思います。TfidfVectorizer NotFittedError

まず、すべての変換をリストにまとめます。

In [225]:components 
Out[225]: 
[TfidfVectorizer(analyzer=u'word', binary=False, decode_error=u'strict', 
     dtype=<type 'numpy.int64'>, encoding=u'utf-8', input=u'content', 
     lowercase=True, max_df=0.85, max_features=None, min_df=6, 
     ngram_range=(1, 1), norm='l1', preprocessor=None, smooth_idf=True, 
     stop_words='english', strip_accents=None, sublinear_tf=True, 
     token_pattern=u'(?u)[#a-zA-Z0-9/\\-]{2,}', 
     tokenizer=StemmingTokenizer(proc_type=stem, token_pattern=(?u)[a-zA-Z0-9/\-]{2,}), 
     use_idf=True, vocabulary=None), 
TruncatedSVD(algorithm='randomized', n_components=150, n_iter=5, 
     random_state=None, tol=0.0), 
TextStatsFeatures(), 
DictVectorizer(dtype=<type 'numpy.float64'>, separator='=', sort=True, 
     sparse=True), 
DictVectorizer(dtype=<type 'numpy.float64'>, separator='=', sort=True, 
     sparse=True), 
TfidfVectorizer(analyzer=u'word', binary=False, decode_error=u'strict', 
     dtype=<type 'numpy.int64'>, encoding=u'utf-8', input=u'content', 
     lowercase=True, max_df=0.85, max_features=None, min_df=6, 
     ngram_range=(1, 2), norm='l1', preprocessor=None, smooth_idf=True, 
     stop_words='english', strip_accents=None, sublinear_tf=True, 
     token_pattern=u'(?u)[a-zA-Z0-9/\\-]{2,}', 
     tokenizer=StemmingTokenizer(proc_type=stem, token_pattern=(?u)[a-zA-Z0-9/\-]{2,}), 
     use_idf=True, vocabulary=None)] 

たとえば、最初のコンポーネントはTfidfVectorizer()オブジェクトです。

components[0] 
Out[226]: 
TfidfVectorizer(analyzer=u'word', binary=False, decode_error=u'strict', 
     dtype=<type 'numpy.int64'>, encoding=u'utf-8', input=u'content', 
     lowercase=True, max_df=0.85, max_features=None, min_df=6, 
     ngram_range=(1, 1), norm='l1', preprocessor=None, smooth_idf=True, 
     stop_words='english', strip_accents=None, sublinear_tf=True, 
     token_pattern=u'(?u)[#a-zA-Z0-9/\\-]{2,}', 
     tokenizer=StemmingTokenizer(proc_type=stem, token_pattern=(?u)[a-zA-Z0-9/\-]{2,}), 
     use_idf=True, vocabulary=None) 

type(components[0]) 
Out[227]: sklearn.feature_extraction.text.TfidfVectorizer 

しかし、私はTfidfVectorizerメソッドget_feature_namesを使用しようとすると、それは

components[0].get_feature_names() 
Traceback (most recent call last): 

    File "<ipython-input-228-0160deb904f5>", line 1, in <module> 
    components[0].get_feature_names() 

    File "C:\Users\fheng\AppData\Local\Continuum\Anaconda\lib\site-packages\sklearn\feature_extraction\text.py", line 903, in get_feature_names 
    self._check_vocabulary() 

    File "C:\Users\fheng\AppData\Local\Continuum\Anaconda\lib\site-packages\sklearn\feature_extraction\text.py", line 275, in _check_vocabulary 
    check_is_fitted(self, 'vocabulary_', msg=msg), 

    File "C:\Users\fheng\AppData\Local\Continuum\Anaconda\lib\site-packages\sklearn\utils\validation.py", line 678, in check_is_fitted 
    raise NotFittedError(msg % {'name': type(estimator).__name__}) 

**NotFittedError: TfidfVectorizer - Vocabulary wasn't fitted.** 

答えて

2

NotFittedErrorをスローuはpipelineまたはfeatureUnionにこのリストを使用することがありますか?そして、fit()メソッドを呼び出しましたか?

このエラーはfit()(つまりモデルの訓練を受けた人)とdirecltyにアクセスしようとしていないというエラーです。

+0

ありがとうございました。それが問題です。 –

+0

@Feliciaあなたが満足している場合は、答えを受け入れてください、または質問を閉じる –

+0

明らかに私は質問を閉じるためにもっと評判が必要です。答えを受け入れるには? –

関連する問題