'inc' 对象与 NLTK for py 2.7
'inc' object with NLTK for py 2.7
我今天早上才下载了 nltk,我的代码已经 运行 出现了一个反复出现的问题。
我明白了,
AttributeError: 'FreqDist' object has no attribute 'inc'
我在这段代码中遇到了同样的错误,
for word in gutenberg.words(’austen-persuasion.txt’):
fd.inc(word)
但只是将其更改为
fd[word] += 1
然而,面对下面的代码,我该何去何从?
for word in gutenberg.words(u'austen-persuasion.txt'):
cfd[prev_word].inc(word)
prev_word = word
这是一个嵌套的 FreqDist。
尝试改变
cfd[prev_word].inc(word)
至
cfd[prev_word][word] += 1
我今天早上才下载了 nltk,我的代码已经 运行 出现了一个反复出现的问题。
我明白了,
AttributeError: 'FreqDist' object has no attribute 'inc'
我在这段代码中遇到了同样的错误,
for word in gutenberg.words(’austen-persuasion.txt’):
fd.inc(word)
但只是将其更改为
fd[word] += 1
然而,面对下面的代码,我该何去何从?
for word in gutenberg.words(u'austen-persuasion.txt'):
cfd[prev_word].inc(word)
prev_word = word
这是一个嵌套的 FreqDist。 尝试改变
cfd[prev_word].inc(word)
至
cfd[prev_word][word] += 1