The Stanford dependencies manual (http://nlp.stanford.edu/software/dependencies_manual.pdf) mentions: "Or our conversion tool can convert the output of other constituency parsers to the Stanford Dependencies representation."
Does anyone know where is that tool available or how to use it?
The Stanford Parser documentation (http://nlp.stanford.edu/software/stanford-dependencies.shtml) mentions: "the dependencies can be obtained using our software [...] on phrase-structure trees using the EnglishGrammaticalStructure class available in the parser package."
I am interested in obtaining (ccprocessed) typed dependency lists to use in NLTK. I see there is a constructor EnglishGrammaticalStructure(Tree t) and I'd like some guidance on how to provide a NLTK tree to it.
First idea: Use nltk.tree.Tree.pprint to produce a string and then parse it using Tree.valueOf from Java. Any suggestion?
Related questions: