gpt4 book ai didi

python - 属性错误 : 'FreqDist' object has no attribute 'inc'

转载 作者:太空狗 更新时间:2023-10-29 17:40:19 25 4
gpt4 key购买 nike

我是 Python 和 NLTK 的初学者。我正在尝试运行教程中的以下代码:

from nltk.corpus import gutenberg
from nltk import FreqDist

fd = FreqDist()

for word in gutenberg.words('austen-sense.txt'):
fd.inc(word)

如果我运行它,我会收到以下错误:

AttributeError: 'FreqDist' object has no attribute 'inc'

知道我做错了什么吗?

最佳答案

你应该这样做:

fd[word] += 1

但通常FreqDist是这样使用的:

fd = FreqDist(my_text)

另请参阅此处的示例:

http://www.nltk.org/book/ch01.html

关于python - 属性错误 : 'FreqDist' object has no attribute 'inc' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25827058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com