VERB being tagged as NOUN
arpieb opened this issue · 0 comments
arpieb commented
In running a local test with some boilerplate text, I'm getting a result that isn't tagging the verb properly:
>>> parsed = list(parse("The quick brown fox jumps over the lazy dog."))
>>> parsed[0]
Sentence(u'The/DET quick/ADJ brown/ADJ fox/NOUN jumps/NOUN over/PREP the/DET lazy/ADJ dog/NOUN ./PUNC')
Note that if I change the verb to "jumped" it tags it correctly:
>>> parsed = list(parse("The quick brown fox jumped over the lazy dog."))
>>> parsed[0]
Sentence(u'The/DET quick/ADJ brown/ADJ fox/NOUN jumped/VERB over/PREP the/DET lazy/ADJ dog/NOUN ./PUNC')
Cloned the latest master, running on the following interpreter:
Python 2.7.12 (default, Oct 11 2016, 05:24:00)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.38)] on darwin
Let me know if you need anything else!
-R