In addition to the corpus that comes with nltk I want to train it with my own corpus that follows the same part of speech rules. How can I find the corpus that it is using, and how can I add my own corpus (in addition, not as a replacement)?
EDIT: Here is the code that I am currently using:
inpy = raw_input("$")
text = nltk.word_tokenize(inpy)
d = nltk.pos_tag(text)