我正在尝试使用nltk根据其度数在短语中获得单词的频率分布。它显示“TypeError:unhashable type:'list'”。不明白问题是什么。请帮忙。
P.S:代码有很多错误,所以不要介意。我正在尝试使用来自许多程序的代码片段来构建关键字提取器,因为我是一个菜鸟到python。如果有人想透露其他错误,也欢迎。代码:
from __future__ import division
import operator
import nltk
import string
def isPunct(word):
return len(word) == 1 and word in string.punctuation
def isNumeric(word):
try:
float(word) if '.' in word else int(word)
return True
except ValueError:
return False
class KeyExt:
def __init__(self):
self.stopwords = set(nltk.corpus.stopwords.words())
self.top_fraction = 1
def _generate_candidate_keywords(self, sentences):
phrase_list = []
for sentence in sentences:
words = map(lambda x: "|" if x in self.stopwords else x, nltk.word_tokenize(sentence.lower()))
phrase = []
for word in words:
if word == "|" or isPunct(word):
if len(phrase) > 0:
phrase_list.append(phrase)
phrase = []
else:
phrase.append(word)
return phrase_list
def _calculate_word_scores(self, phrase_list):
word_freq = nltk.FreqDist()
word_degree = nltk.FreqDist()
for phrase in phrase_list:
degree = [x for x in phrase if not isNumeric(x)]
for word in phrase:
word_freq[word]=word_freq[word]+1
word_degree[word, degree]=word_degree[word, degree]+1
for word in word_freq.keys():
word_degree[word] = word_degree[word] + word_freq[word]
word_scores = {}
for word in word_freq.keys():
word_scores[word] = word_degree[word] / word_freq[word]
return word_scores
def _calculate_phrase_scores(self, phrase_list, word_scores):
phrase_scores = {}
for phrase in phrase_list:
phrase_score = 0
for word in phrase:
phrase_score += word_scores[word]
phrase_scores[" ".join(phrase)] = phrase_score
return phrase_scores
def extract(self, text, incl_scores=False):
sentences = nltk.sent_tokenize(text)
phrase_list = self._generate_candidate_keywords(sentences)
word_scores = self._calculate_word_scores(phrase_list)
phrase_scores = self._calculate_phrase_scores(phrase_list, word_scores)
sorted_phrase_scores = sorted(phrase_scores.items(), key=operator.itemgetter(1), reverse=True)
n_phrases = len(sorted_phrase_scores)
if incl_scores:
return sorted_phrase_scores[0:int(n_phrases/self.top_fraction)]
else:
return map(lambda x: x[0],
sorted_phrase_scores[0:int(n_phrases/self.top_fraction)])
def test():
search=input("Enter Text: ")
ke = KeyExt()
keywords = ke.extract(search, incl_scores=True)
print (keywords)
if __name__ == "__main__":
test()
完整追溯:
Traceback (most recent call last): File "C:\Users\SAURAV
DAS\AppData\Local\Programs\Python\Python35\projects\nlpproj.py", line
81, in <module>
test() File "C:\Users\SAURAV DAS\AppData\Local\Programs\Python\Python35\projects\nlpproj.py", line
77, in test
keywords = ke.extract(search, incl_scores=True) File "C:\Users\SAURAV
DAS\AppData\Local\Programs\Python\Python35\projects\nlpproj.py", line
64, in extract
word_scores = self._calculate_word_scores(phrase_list) File "C:\Users\SAURAV
DAS\AppData\Local\Programs\Python\Python35\projects\nlpproj.py", line
44, in _calculate_word_scores
word_degree[word, degree]=word_degree[word, degree]+1 TypeError: unhashable type: 'list'
答案 0 :(得分:0)
当您尝试将list
用作dict
密钥时,会发生此错误。 list
不可以播放,也不能用于密钥(例如tuple
可以使用。)
在你的案例中
word_degree[word, degree]=word_degree[word, degree]+1
你正在使用学位作为word_degree
的索引而没有意义,因为学位本身是list
。