将 stop_words 的数字添加到 scikit-learn 的 CountVectorizer

Adding numbers to stop_words to scikit-learn's CountVectorizer

This question解释了如何将自己的词添加到CountVectorizer的内置英文停用词中。我有兴趣了解消除任何数字作为标记对分类器的影响。

ENGLISH_STOP_WORDS 存储为冻结集,所以我想我的问题归结为(除非有我不知道的方法)是否可以向冻结列表添加任意数字表示?

我对这个问题的感觉是这是不可能的,因为您必须通过的列表的有限性排除了这一点。

我想完成同样事情的一种方法是遍历测试语料库和弹出词,其中 word.isdigit() 对 set/list 是真的,然后我可以与 [=12= 联合] (see previous answer),但我宁愿偷懒,将更简单的东西传递给 stop_words 参数。

您可以将其实现为 CountVectorizer 的自定义 preprocessor,而不是扩展停用词列表。下面是 bpython 中所示的一个简单版本。

>>> import re
>>> cv = CountVectorizer(preprocessor=lambda x: re.sub(r'(\d[\d\.])+', 'NUM', x.lower()))
>>> cv.fit(['This is sentence.', 'This is a second sentence.', '12 dogs eat candy', '1 2 3 45'])
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=<function <lambda> at 0x109bbcb18>, stop_words=None,
        strip_accents=None, token_pattern=u'(?u)\b\w\w+\b',
        tokenizer=None, vocabulary=None)
>>> cv.vocabulary_
{u'sentence': 6, u'this': 7, u'is': 4, u'candy': 1, u'dogs': 2, u'second': 5, u'NUM': 0, u'eat': 3}

预编译正则表达式可能会在处理大量样本时提供一些加速。

import re
from sklearn.feature_extraction.text import CountVectorizer

list_of_texts = ['This is sentence.', 'This is a second sentence.', '12 dogs eat candy', '1 2 3 45']

def no_number_preprocessor(tokens):
    r = re.sub('(\d)+', 'NUM', tokens.lower())
    # This alternative just removes numbers:
    # r = re.sub('(\d)+', '', tokens.lower())
    return r

for t in list_of_texts:
    no_num_t = no_number_preprocessor(t)
    print(no_num_t)

cv = CountVectorizer(input='content', preprocessor=no_number_preprocessor)
dtm = cv.fit_transform(list_of_texts)
cv_vocab = cv.get_feature_names()

print(cv_vocab)

出局

this is sentence.

this is a second sentence.

NUM dogs eat candy

NUM NUM NUM NUM

['NUM', 'candy', 'dogs', 'eat', 'is', 'second', 'sentence', 'this']