How can I generate parsing trees of English sentences in iOS?

I would like to generate parsed trees in English in iOS applications. http://en.wikipedia.org/wiki/Parse_tree

My current settings are as follows:

  • Write your own generation tree on top of the POS tags from NSLinguisticTagger.
  • Embedding python based NLTK in my application.
  • Create or use a server-based approach.

Can someone recommend one of these approaches or maybe suggest another?

+6
source share
1 answer

maybe this will help:

JavaScript is a fairly popular language, and you can run JS in C object code check Integrate JavaScript in your own wwdc 2013 session applications

so maybe you can find a solution in JS and use it in objc source code.

0
source

All Articles