如何获得最高 tf-idf 分数的前 n 个项 - 大稀疏矩阵

How to get top n terms with highest tf-idf score - Big sparse matrix

有这个代码:

feature_array = np.array(tfidf.get_feature_names())
tfidf_sorting = np.argsort(response.toarray()).flatten()[::-1]

n = 3
top_n = feature_array[tfidf_sorting][:n]

来自 个答案。

我的问题是,如果我的稀疏矩阵太大而无法立即转换为密集矩阵(response.toarray()),我该如何有效地做到这一点?

显然,一般的答案是将稀疏矩阵分成块,在 for 循环中对每个块进行转换,然后将所有块的结果组合起来。

但我想具体看看总共执行此操作的代码。

如果您深入研究 问题,他们有兴趣了解单个文档的最高 tf_idf 分数。

当你想对大型语料库做同样的事情时,你需要对所有文档的每个特征的分数求和(仍然没有意义,因为分数在 l2 中标准化 TfidfVectorizer(), 阅读 )。我建议使用 .idf_ 分数来了解具有高逆文档频率分数的特征。

如果您想根据出现次数了解最重要的特征,请使用 CountVectorizer()

from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer
corpus = [
    'I would like to check this document',
    'How about one more document',
    'Aim is to capture the key words from the corpus'
]
vectorizer = TfidfVectorizer(stop_words='english')
X = vectorizer.fit_transform(corpus)
feature_array = vectorizer.get_feature_names()

top_n = 3

print('tf_idf scores: \n', sorted(list(zip(vectorizer.get_feature_names(), 
                                             X.sum(0).getA1())), 
                                 key=lambda x: x[1], reverse=True)[:top_n])
# tf_idf scores : 
# [('document', 1.4736296010332683), ('check', 0.6227660078332259), ('like', 0.6227660078332259)]

print('idf values: \n', sorted(list(zip(feature_array,vectorizer.idf_,)),
       key = lambda x: x[1], reverse=True)[:top_n])

# idf values: 
#  [('aim', 1.6931471805599454), ('capture', 1.6931471805599454), ('check', 1.6931471805599454)]

vectorizer = CountVectorizer(stop_words='english')
X = vectorizer.fit_transform(corpus)
feature_array = vectorizer.get_feature_names()
print('Frequency: \n', sorted(list(zip(vectorizer.get_feature_names(), 
                                         X.sum(0).getA1())),
                            key=lambda x: x[1], reverse=True)[:top_n])

# Frequency: 
#  [('document', 2), ('aim', 1), ('capture', 1)]