I would like to generate constituency-based parsed trees of English sentences within an iOS application. http://en.wikipedia.org/wiki/Parse_tree
My current options appear to be:
- Write my own tree generation on top of POS tagging from NSLinguisticTagger.
- Embed the python-based NLTK into my app.
- Create or use a server based approach.
Could anyone recommend one of these approaches, or perhaps suggest another?