为什么我无法从NLTK diakenize或导入令牌?
我收到以下侵入式:
1 import nltk
---->2 from nltk.tokenize import tokenize
3 import re
ImportError: cannot import name 'tokenize' from 'nltk.tokenize'
I am receiving the below ImportError:
1 import nltk
---->2 from nltk.tokenize import tokenize
3 import re
ImportError: cannot import name 'tokenize' from 'nltk.tokenize'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须这样导入:
来自nltk.tokenize导入word_tokenize
you have to import like this:
from nltk.tokenize import word_tokenize
您可以使用下面的代码来查看该库的所有可用方法。
正如您将看到的,没有
tokenize
,这就是错误发生的原因。You can use the code bellow to take a look at all available methods of the library.
As you will see there is no
tokenize
and that is the reason of error occurrence.