I am trying to convert some verbs at other times for some kind of NLP task.
I am trying to use the NodeBox :: Linguistics library as suggested here: Using NLTK and WordNet; how to transform a simple tense verb into its present, past or past form of communion?
But I believe that this code does not print the correct form of the word:
print en.verb.present("found") print en.verb.infinitive("found")
I expect it to print βfind,β but actually just print βfound.β
- Is this a bug in the library or am I missing something?
- Would you recommend using any other library for any other reason?
source share