I have made a corpus abc
. And I am unable to upload it in python
The problems I am facing:
1) Should I place self-build corpus in the location where all the pre-build corpus are?
1.a) If so why am i not able to use this commands: (Let say the location is 'LOCATION')
abc = nltk.data.find('LOCATION\abc')
1.b) In fact,
from nltk import abc
is throwing this error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name abc
2) What are the other ways I can upload the corpus I have created?