Is there any function in Standford NLP and OpenNLP to get output of parsing in IOB format? I need to use parser for NP chunking of sentences.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
If you only need NP chunks, use the OpenNLP chunker instead of a parser. It sounds like it might help you to read more about the differences between chunking and parsing, for example in the NLTK docs on partial parsing. Although you could extract NPs from the output of a parser if you wanted, a normal parse couldn't be represented in IOB format or converted to IOB format. |
|||
|
|