【发布时间】:2021-01-03 15:47:54
【问题描述】:
我正在尝试计算没有停用词的tfidf 矩阵。这是我的代码:
def removeStopWords(documents):
stop_words = set(stopwords.words('italian'))
english_stop_words = set(stopwords.words('english'))
stop_words.update(list(set(english_stop_words)))
for d in documents:
document = d['document']
word_tokens = word_tokenize(document)
filtered_sentence = ''
for w in word_tokens:
if not inStopwords(w, stop_words):
filtered_sentence = w + ' ' + filtered_sentence
d['document'] = filtered_sentence[:-1]
return calculateTFIDF(documents)
def calculateTFIDF(corpus):
tfidf = TfidfVectorizer()
x = tfidf.fit_transform(corpus)
df_tfidf = pd.DataFrame(x.toarray(), columns=tfidf.get_feature_names())
return {c: s[s > 0] for c, s in zip(df_tfidf, df_tfidf.T.values)}
但是当我返回矩阵时(格式为{word:value}),它还包含一些停用词,如when 或il。我该如何解决?谢谢
【问题讨论】:
-
我用这个
https://stackoverflow.com/questions/34612023/install-nltk-in-python-2-7-for-64-bit-machine在python 2.7上安装nltk,它可以工作
标签: python pandas python-2.7 numpy nltk