赞
踩
参考:https://blog.csdn.net/du_qi/article/details/51564303
https://blog.csdn.net/m0_37324740/article/details/79411651
一:
CountVectorizer 类会将文本中的词语转换为词频矩阵。也就是通过分词后将所有的文档中的全部词作为一个字典(就是类似于新华字典这种)。然后将每一行的词用0,1矩阵来表示。并且每一行的长度相同,长度为字典的长度,在词典中存在,置为1,否则,为0。
代码如下:
- from sklearn.feature_extraction.text import CountVectorizer
-
- vectorizer = CountVectorizer(min_df=1)
-
- corpus = [ 'This is the first document.',
- 'This is the second second document.',
- 'And the third one.',
- 'Is this the first document?',
- ]
- X = vectorizer.fit_transform(corpus)
- feature_name = vectorizer.get_feature_names()
-
- print (X)
- print (feature_name)
- print (X.toarray())
输出结果为:
- (0, 1) 1
- (0, 2) 1
- (0, 6) 1
- (0, 3) 1
- (0, 8) 1
- (1, 5) 2
- (1, 1) 1
- (1, 6) 1
- (1, 3) 1
- (1, 8) 1
- (2, 4) 1
- (2, 7) 1
- (2, 0) 1
- (2, 6) 1
- (3, 1) 1
- (3, 2) 1
- (3, 6) 1
- (3, 3) 1
- (3, 8) 1
['and', 'document', 'first', 'is', 'one', 'second', 'the', 'third', 'this']
- [[0 1 1 ..., 1 0 1]
- [0 1 0 ..., 1 0 1]
- [1 0 0 ..., 1 1 0]
- [0 1 1 ..., 1 0 1]]
由于大部分文本都只会用词汇表中很少一部分的词,因此词向量中有大量的0,也就是说词向量是稀疏的。因此在实际应用中一般使用稀疏矩阵来存储。
二:
TfidfVectorizer()类
TF-IDF的主要思想是:如果某个词或短语在一篇文章中出现的频率TF高,并且在其他文章中很少出现,则认为此词或者短语具有很好的类别区分能力,适合用来分类。TF-IDF实际上是:TF * IDF。
第一种方法是在用 CountVectorizer 类向量化之后再调用 TfidfTransformer 类进行预处理。第二种方法是直接用 TfidfVectorizer 完成向量化与 TF-IDF 预处理。
依旧用上面的文本,实现如下:
- from sklearn.feature_extraction.text import TfidfTransformer
- from sklearn.feature_extraction.text import CountVectorizer
-
-
- corpus = [ 'This is the first document.',
- 'This is the second second document.',
- 'And the third one.',
- 'Is this the first document?',
- ]
-
-
- vectorizer=CountVectorizer()
-
-
- transformer = TfidfTransformer()
- tfidf = transformer.fit_transform(vectorizer.fit_transform(corpus))
- print (tfidf)
输出结果为:
- (0, 8) 0.438776742859
- (0, 3) 0.438776742859
- (0, 6) 0.358728738248
- (0, 2) 0.541976569726
- (0, 1) 0.438776742859
- (1, 8) 0.272301467523
- (1, 3) 0.272301467523
- (1, 6) 0.222624292325
- (1, 1) 0.272301467523
- (1, 5) 0.853225736145
- (2, 6) 0.28847674875
- (2, 0) 0.552805319991
- (2, 7) 0.552805319991
- (2, 4) 0.552805319991
- (3, 8) 0.438776742859
- (3, 3) 0.438776742859
- (3, 6) 0.358728738248
- (3, 2) 0.541976569726
- (3, 1) 0.438776742859
实现代码如下:
- from sklearn.feature_extraction.text import TfidfVectorizer
- tfidf2 = TfidfVectorizer()
- re = tfidf2.fit_transform(corpus)
- print (re)
输出结果为:
- (0, 8) 0.438776742859
- (0, 3) 0.438776742859
- (0, 6) 0.358728738248
- (0, 2) 0.541976569726
- (0, 1) 0.438776742859
- (1, 8) 0.272301467523
- (1, 3) 0.272301467523
- (1, 6) 0.222624292325
- (1, 1) 0.272301467523
- (1, 5) 0.853225736145
- (2, 6) 0.28847674875
- (2, 0) 0.552805319991
- (2, 7) 0.552805319991
- (2, 4) 0.552805319991
- (3, 8) 0.438776742859
- (3, 3) 0.438776742859
- (3, 6) 0.358728738248
- (3, 2) 0.541976569726
- (3, 1) 0.438776742859
(1)CountVectorizer
class sklearn.feature_extraction.text.CountVectorizer(input='content', encoding='utf-8', decode_error='strict', strip_accents=None, lowercase=True, preprocessor=None, tokenizer=None, stop_words=None, token_pattern='(?u)\b\w\w+\b', ngram_range=(1, 1), analyzer='word', max_df=1.0, min_df=1, max_features=None, vocabulary=None, binary=False, dtype=<class 'numpy.int64'>)
(分为三个处理步骤:preprocessing、tokenizing、n-grams generation)
参数:(一般要设置的参数是decode_error,stop_words='english',token_pattern='...'(重要参数),max_df,min_df,max_features)
input:一般使用默认即可,可以设置为"filename'或'file',尚不知道其用法
encodeing:使用默认的utf-8即可,分析器将会以utf-8解码raw document
decode_error:默认为strict,遇到不能解码的字符将报UnicodeDecodeError错误,设为ignore将会忽略解码错误,还可以设为replace,作用尚不明确
strip_accents:默认为None,可设为ascii或unicode,将使用ascii或unicode编码在预处理步骤去除raw document中的重音符号
analyzer:一般使用默认,可设置为string类型,如'word', 'char', 'char_wb',还可设置为callable类型,比如函数是一个callable类型
preprocessor:设为None或callable类型
tokenizer:设为None或callable类型
ngram_range:词组切分的长度范围,详细用法见http://scikit-learn.org/stable/modules/feature_extraction.html#text-feature-extraction中4.2.3.4上方第三个框
stop_words:设置停用词,设为english将使用内置的英语停用词,设为一个list可自定义停用词,设为None不使用停用词,设为None且max_df∈[0.7, 1.0)将自动根据当前的语料库建立停用词表
lowercase:将所有字符变成小写
token_pattern:表示token的正则表达式,需要设置analyzer == 'word',默认的正则表达式选择2个及以上的字母或数字作为token,标点符号默认当作token分隔符,而不会被当作token
max_df:可以设置为范围在[0.0 1.0]的float,也可以设置为没有范围限制的int,默认为1.0。这个参数的作用是作为一个阈值,当构造语料库的关键词集的时候,如果某个词的document frequence大于max_df,这个词不会被当作关键词。如果这个参数是float,则表示词出现的次数与语料库文档数的百分比,如果是int,则表示词出现的次数。如果参数中已经给定了vocabulary,则这个参数无效
min_df:类似于max_df,不同之处在于如果某个词的document frequence小于min_df,则这个词不会被当作关键词
max_features:默认为None,可设为int,对所有关键词的term frequency进行降序排序,只取前max_features个作为关键词集
vocabulary:默认为None,自动从输入文档中构建关键词集,也可以是一个字典或可迭代对象?
binary:默认为False,一个关键词在一篇文档中可能出现n次,如果binary=True,非零的n将全部置为1,这对需要布尔值输入的离散概率模型的有用的
dtype:使用CountVectorizer类的fit_transform()或transform()将得到一个文档词频矩阵,dtype可以设置这个矩阵的数值类型
属性:
vocabulary_:字典类型,key为关键词,value是特征索引,样例如下:
com.furiousapps.haunt2: 57048
bale.yaowoo: 5025
asia.share.superayiconsumer: 4660
com.cooee.flakes: 38555
com.huahan.autopart: 67364
关键词集被存储为一个数组向量的形式,vocabulary_中的key是关键词,value就是该关键词在数组向量中的索引,使用get_feature_names()方法可以返回该数组向量。使用数组向量可验证上述关键词,如下:
ipdb> count_vec.get_feature_names()[57048]
u'com.furiousapps.haunt2'
ipdb> count_vec.get_feature_names()[5025]
u'bale.yaowoo'
stop_words_:集合类型,官网的解释十分到位,如下:
Terms that were ignored because they either:
occurred in too many documents (max_df)
occurred in too few documents (min_df)
were cut off by feature selection (max_features).
This is only available if no vocabulary was given.
这个属性一般用来程序员自我检查停用词是否正确,在pickling的时候可以设置stop_words_为None是安全的
(2)TfidfVectorizer
class sklearn.feature_extraction.text.TfidfVectorizer(input='content', encoding='utf-8', decode_error='strict', strip_accents=None, lowercase=True, preprocessor=None, tokenizer=None, analyzer='word', stop_words=None, token_pattern='(?u)\b\w\w+\b', ngram_range=(1, 1), max_df=1.0, min_df=1, max_features=None, vocabulary=None, binary=False, dtype=<class 'numpy.int64'>, norm='l2', use_idf=True, smooth_idf=True, sublinear_tf=False)
TfidfVectorizer与CountVectorizer有很多相同的参数,下面只解释不同的参数
binary:默认为False,tf-idf中每个词的权值是tf*idf,如果binary设为True,所有出现的词的tf将置为1,TfidfVectorizer计算得到的tf与CountVectorizer得到的tf是一样的,就是词频,不是词频/该词所在文档的总词数。
norm:默认为'l2',可设为'l1'或None,计算得到tf-idf值后,如果norm='l2',则整行权值将归一化,即整行权值向量为单位向量,如果norm=None,则不会进行归一化。大多数情况下,使用归一化是有必要的。
use_idf:默认为True,权值是tf*idf,如果设为False,将不使用idf,就是只使用tf,相当于CountVectorizer了。
smooth_idf:idf平滑参数,默认为True,idf=ln((文档总数+1)/(包含该词的文档数+1))+1,如果设为False,idf=ln(文档总数/包含该词的文档数)+1
sublinear_tf:默认为False,如果设为True,则替换tf为1 + log(tf)。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。