将语料库添加到NLTK语料库,然后导入它

时间:2016-11-13 23:33:40

标签: python import nltk corpus

我创建了一个由.txt文件集合组成的语料库,并希望开始在它们上使用NLTK(python)。

我已经导航到/ nltk_data / corpora /,其中NLTK附带了一些预先定义的语料库(gutenberg,shakespear等),供平台测试。

但是,当我尝试添加自己的文件(包含几个.txt文件)时,使用

导入它

from nltk.corpus import [name of my file]

我收到此消息:

Traceback (most recent call last): File "<pyshell#2>", line 1, in <module> from nltk.corpus import [name of my file] ImportError: cannot import name '[name of my file]'

我做错了什么?另外,从任何其他地方调用我的文件的方法是什么?

感谢。

0 个答案:

没有答案