-1
Stopvewordとしてcountvectorizerに渡す単語だけを残したいと思います。countvectorizerからStopwords以外の単語を削除する方法
CV= CountVectorizer(max_features=500,stop_words= frozenset(["word1", "word2","word3"]))
これを行う方法。
Stopvewordとしてcountvectorizerに渡す単語だけを残したいと思います。countvectorizerからStopwords以外の単語を削除する方法
CV= CountVectorizer(max_features=500,stop_words= frozenset(["word1", "word2","word3"]))
これを行う方法。
あなたの代わりにstop_words
のvocabulary
parameterを使用したいIIUC:
CV = CountVectorizer(max_features=500, vocabulary=["word1","word2","word3"])