Version 1.1
This CFG parser offers a reasonable peformance (an f-score of 85%) with high-speed parsing (71 sentences/sec). If you need to parse a huge collection of documents such as a Web corpus, or to build an interactive (real-time) information extraction system, this parser could be useful. For details of the parser, see [1].
If you are looking for a high-precision CFG parser, try Charniak parser or Collins parser.
If you are looking for a parser that gives a deeper analysis, try Enju.
The parser is currently tested only on linux and gcc.
> tar xvzf chunkparser.tar.gz
> cd chunkparser/
> make
> ./parser < TAGGEDTEXT > PARSEDTEXT
> ./parser -s < TAGGEDTEXT > PARSEDTEXT
> echo "He/PRP opened/VBD the/DT window/NN ./." | ./parser
(TOP (S (NP (PRP He) ) (VP (VBD opened) (NP (DT the) (NN window) ) ) (. .) ) )
>