Has anyone here came up with a way to parse the string result that you get from result.document.sentences.sentence.parse? With the one in the example you would get this '(ROOT (S (NP (DT This)) (VP (VBZ is) (ADJP (RB so) (JJ good))) (. .))) ' (which compared to other ones is still a very simple one). Now I'm trying to write a parser function so that I can build further logic on top of the result.
Has anyone here came up with a way to parse the string result that you get from result.document.sentences.sentence.parse? With the one in the example you would get this '(ROOT (S (NP (DT This)) (VP (VBZ is) (ADJP (RB so) (JJ good))) (. .))) ' (which compared to other ones is still a very simple one). Now I'm trying to write a parser function so that I can build further logic on top of the result.