为什么我无法从NLTK diakenize或导入令牌?

发布于 2025-01-17 13:40:56 字数 187 浏览 1 评论 0原文

我收到以下侵入式:

     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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无声静候 2025-01-24 13:40:56

您必须这样导入:
来自nltk.tokenize导入word_tokenize

you have to import like this:
from nltk.tokenize import word_tokenize

帅气称霸 2025-01-24 13:40:56

您可以使用下面的代码来查看该库的所有可用方法。

import nltk.tokenize

dir(nltk.tokenize)

正如您将看到的,没有tokenize,这就是错误发生的原因。

# to get more information about
help(nltk.tokenize)

You can use the code bellow to take a look at all available methods of the library.

import nltk.tokenize

dir(nltk.tokenize)

As you will see there is no tokenize and that is the reason of error occurrence.

# to get more information about
help(nltk.tokenize)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文