Class BioCodec

java.lang.Object
opennlp.tools.namefind.BioCodec
All Implemented Interfaces:
SequenceCodec<String>

public class BioCodec extends Object implements SequenceCodec<String>
The default SequenceCodec implementation according to the BIO scheme:
  • B: 'beginning' of a NE
  • I: 'inside', the word is inside a NE
  • O: 'outside', the word is a regular word outside a NE
See also the paper by Roth D. and Ratinov L.: Design Challenges and Misconceptions in Named Entity Recognition.
See Also: