0

i want to convert words between verb/noun/adjective forms with stanford nlp

For example , ntlk supply functions

    print verbify('writer') # => ['write']
print nounize('written') # => ['writer']
print adjectivate('write') # => ['written']

i am looking for stanfordnlp functions version look like ntlk functions.

thank you best regards

user2420164
  • 33
  • 1
  • 6
  • neither `NLTK` or stanford `CoreNLP` have the functions you listed. most probably you meant http://www.clips.ua.ac.be/pattern – alvas Oct 04 '13 at 10:10
  • i develop our project with java . so i am looking for java solution. Do you know any page example contains functions of corenlp? Does clip.ua.ac.be/pattern use pyhton? Has it contains solution for other languages ? – user2420164 Oct 05 '13 at 15:10

1 Answers1

0

There are no such documented functions in any of the Stanford NLP supported software distributions, but there is a work around offered in response to the question previously being asked here

Community
  • 1
  • 1