Class ADPOSSampleStream

java.lang.Object
opennlp.tools.formats.ad.ADPOSSampleStream
All Implemented Interfaces:
AutoCloseable, ObjectStream<POSSample>

@Internal public class ADPOSSampleStream extends Object implements ObjectStream<POSSample>
Note: Do not use this class, internal use only!
  • Constructor Details

    • ADPOSSampleStream

      public ADPOSSampleStream(ObjectStream<String> lineStream, boolean expandME, boolean includeFeatures)
      Creates a new ADPOSSampleStream stream from a ObjectStream<String>, that could be a PlainTextByLineStream object.
      Parameters:
      lineStream - A ObjectStream<String> stream as input.
      expandME - If true will expand the multiword expressions, each word of the expression will have the POS Tag that was attributed to the expression plus the prefix B- or I- (CONLL convention).
      includeFeatures - If true will combine the POS Tag with the feature tags.
    • ADPOSSampleStream

      public ADPOSSampleStream(InputStreamFactory in, String charsetName, boolean expandME, boolean includeFeatures) throws IOException
      Creates a new POSSample stream from an InputStreamFactory
      Parameters:
      in - The InputStreamFactory for the corpus.
      charsetName - The charset to use for reading of the corpus.
      expandME - If true will expand the multiword expressions, each word of the expression will have the POS Tag that was attributed to the expression plus the prefix B- or I- (CONLL convention).
      includeFeatures - If true will combine the POS Tag with the feature tags.
      Throws:
      IOException
  • Method Details