Class ADPOSSampleStream

    • Constructor Detail

      • ADPOSSampleStream

        public ADPOSSampleStream​(ObjectStream<String> lineStream,
                                 boolean expandME,
                                 boolean includeFeatures)
        Creates a new ADPOSSampleStream stream from a ObjectStream, that could be a PlainTextByLineStream object.
        Parameters:
        lineStream - A ObjectStream 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