如何使用analyzer='char'计算Tf-Idf值?

5

我不太理解以下程序中如何得到Tf-Idf值:

我尝试使用网站上给出的概念计算文档2(“And_this_is_the_third_one.”)中a的值,但是使用上述概念得到的'a'的值为

1/26*log(4/1)

((字符'a'出现次数)/(给定文档中的字符总数)*log( # 所有文档 / # 包含该字符的文档数))

= 0.023156

但是输出结果为0.2203,如输出所示。

from sklearn.feature_extraction.text import TfidfVectorizer
corpus = ['This_is_the_first_document.', 'This_document_is_the_second_document.', 'And_this_is_the_third_one.', 'Is_this_the_first_document?', ]
vectorizer = TfidfVectorizer(min_df=0.0, analyzer="char")
X = vectorizer.fit_transform(corpus)
print(vectorizer.get_feature_names())
print(vectorizer.vocabulary_)
m = X.todense()
print(m)

我预期根据上述概念输出结果为0.023156。
输出结果为:
['.', '?', '_', 'a', 'c', 'd', 'e', 'f', 'h', 'i', 'm', 'n', 'o', 'r', 's', 't', 'u']


{'t': 15, 'h': 8, 'i': 9, 's': 14, '_': 2, 'e': 6, 'f': 7, 'r': 13, 'd': 5, 'o': 12, 'c': 4, 'u': 16, 'm': 10, 'n': 11, '.': 0, 'a': 3, '?': 1}


[[0.14540332 0.         0.47550697 0.         0.14540332 0.11887674
  0.23775349 0.17960203 0.23775349 0.35663023 0.14540332 0.11887674
  0.11887674 0.14540332 0.35663023 0.47550697 0.14540332]


 [0.10814145 0.         0.44206359 0.         0.32442434 0.26523816
  0.35365088 0.         0.17682544 0.17682544 0.21628289 0.26523816
  0.26523816 0.         0.26523816 0.35365088 0.21628289]


 [0.14061506 0.         0.57481012 0.22030066 0.         0.22992405
  0.22992405 0.         0.34488607 0.34488607 0.         0.22992405
  0.11496202 0.14061506 0.22992405 0.34488607 0.        ]


 [0.         0.2243785  0.46836004 0.         0.14321789 0.11709001
  0.23418002 0.17690259 0.23418002 0.35127003 0.14321789 0.11709001
  0.11709001 0.14321789 0.35127003 0.46836004 0.14321789]]

在这个上下文中,“the con”是什么意思? - Peter Mortensen
你的意思是“概念”而不是“the con”吗? - Dolf Watson
1个回答

4
TfidfVectorizer()已经对文档计数进行了平滑处理,并在tf-idf向量上应用了l2归一化,正如文档中所述。

(字符出现次数)/(给定文档中的字符数) *
log (1 + # 文档总数 / 1 + # 给定字符出现的文档数) +1 )

默认情况下,此规范化为l2,但您可以使用参数norm更改或删除此步骤。同样,平滑也可以。
为了理解如何计算确切得分,我将使用CountVectorizer()来了解每个文档中每个字符的计数。
countVectorizer = CountVectorizer(analyzer='char')
tf = countVectorizer.fit_transform(corpus)
tf_df = pd.DataFrame(tf.toarray(),
                     columns= countVectorizer.get_feature_names())
tf_df

#output:
   .  ?  _  a  c  d  e  f  h  i  m  n  o  r  s  t  u
0  1  0  4  0  1  1  2  1  2  3  1  1  1  1  3  4  1
1  1  0  5  0  3  3  4  0  2  2  2  3  3  0  3  4  2
2  1  0  5  1  0  2  2  0  3  3  0  2  1  1  2  3  0
3  0  1  4  0  1  1  2  1  2  3  1  1  1  1  3  4  1

现在让我们针对第二个文档应用基于sklearn实现的tf-idf加权!
v=[]
doc_id = 2
# number of documents in the corpus + smoothing
n_d = 1+ tf_df.shape[0]

for char in tf_df.columns:
    # calculate tf - count of this char in the doc / total number chars in the doc
    tf = tf_df.loc[doc_id,char]/tf_df.loc[doc_id,:].sum()

    # number of documents containing this char with smoothing 
    df_d_t = 1+ sum(tf_df.loc[:,char]>0)
    # now calculate the idf with smoothing 
    idf = (np.log (n_d/df_d_t) + 1 )

    # calculate the score now
    v.append (tf*idf)

from sklearn.preprocessing import normalize

# normalize the vector with l2 norm and create a dataframe with feature_names

pd.DataFrame(normalize([v], norm='l2'), columns=vectorizer.get_feature_names())

#output:

       .    ?        _         a    c         d         e    f         h        i    m         n         o         r         s         t    u  
 0.140615  0.0  0.57481  0.220301  0.0  0.229924  0.229924  0.0  0.344886   0.344886  0.0  0.229924  0.114962  0.140615  0.229924  0.344886  0.0 

你会发现字符 a 的分数与 TfidfVectorizer() 的输出匹配!


1
非常感谢 @Al_Learning,现在非常清楚了。 - Dolf Watson
请告诉我们平滑处理的含义。 - WebComer
在这两个步骤中加1是平滑处理的一个方面。如果您仍然感到困惑,请提出一个新问题,并提供更多详细信息。 - Venkatachalam

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接