Scikit学习tf idf矢量器:如何获得最高tf idf s的前n项

2024-05-15 12:39:41 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在研究关键词提取问题。考虑一下非常一般的情况

tfidf = TfidfVectorizer(tokenizer=tokenize, stop_words='english')

t = """Two Travellers, walking in the noonday sun, sought the shade of a widespreading tree to rest. As they lay looking up among the pleasant leaves, they saw that it was a Plane Tree.

"How useless is the Plane!" said one of them. "It bears no fruit whatever, and only serves to litter the ground with leaves."

"Ungrateful creatures!" said a voice from the Plane Tree. "You lie here in my cooling shade, and yet you say I am useless! Thus ungratefully, O Jupiter, do men receive their blessings!"

Our best blessings are often the least appreciated."""

tfs = tfidf.fit_transform(t.split(" "))
str = 'tree cat travellers fruit jupiter'
response = tfidf.transform([str])
feature_names = tfidf.get_feature_names()

for col in response.nonzero()[1]:
    print(feature_names[col], ' - ', response[0, col])

这给了我

  (0, 28)   0.443509712811
  (0, 27)   0.517461475101
  (0, 8)    0.517461475101
  (0, 6)    0.517461475101
tree  -  0.443509712811
travellers  -  0.517461475101
jupiter  -  0.517461475101
fruit  -  0.517461475101

这很好。对于任何新文档,是否有办法获得tfidf得分最高的前n项?


Tags: ofthetointreenamesresponsecol
2条回答

你需要做一点歌舞来获得矩阵作为numpy数组,但这应该符合你的要求:

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]

这给了我:

array([u'fruit', u'travellers', u'jupiter'], 
  dtype='<U13')

argsort调用是非常有用的,here are the docs for it。我们必须做[::-1],因为argsort只支持从小到大的排序。我们调用flatten来将维数减少到1d,这样排序后的索引就可以用于索引1d特征数组。请注意,包含对flatten的调用只有在一次测试一个文档时才起作用。

另外,在另一个问题上,你的意思是tfs = tfidf.fit_transform(t.split("\n\n"))?否则,多行字符串中的每个术语都将被视为“文档”。相反,使用\n\n意味着我们实际上在查看4个文档(每行一个文档),这在考虑tfidf时更有意义。

使用稀疏矩阵本身的解决方案(没有.toarray())!

tfidf = TfidfVectorizer(stop_words='english')
corpus = [
    'I would like to check this document',
    'How about one more document',
    'Aim is to capture the key words from the corpus',
    'frequency of words in a document is called term frequency'
]

X = tfidf.fit_transform(corpus)
feature_names = np.array(tfidf.get_feature_names())


new_doc = ['can key words in this new document be identified?',
           'idf is the inverse document frequency caculcated for each of the words']
responses = tfidf.transform(new_doc)


def get_top_tf_idf_words(response, top_n=2):
    sorted_nzs = np.argsort(response.data)[:-(top_n+1):-1]
    return feature_names[response.indices[sorted_nzs]]

print([get_top_tf_idf_words(response,2) for response in responses])

#[array(['key', 'words'], dtype='<U9'),
 array(['frequency', 'words'], dtype='<U9')]

相关问题 更多 >