Class LanguageDetectorSampleStream

java.lang.Object
opennlp.tools.util.FilterObjectStream<String, opennlp.tools.langdetect.LanguageSample>
opennlp.tools.langdetect.LanguageDetectorSampleStream
All Implemented Interfaces:
AutoCloseable, opennlp.tools.util.ObjectStream<opennlp.tools.langdetect.LanguageSample>

public class LanguageDetectorSampleStream extends FilterObjectStream<String, opennlp.tools.langdetect.LanguageSample>
This class reads in string encoded training samples, parses them and outputs LanguageSample objects.

Format:
Each line contains one sample document.
The language is the first string in the line followed by a tab and the document content.
Sample line: category-string tab-char document line-break-char(s)

  • Constructor Details

    • LanguageDetectorSampleStream

      public LanguageDetectorSampleStream(opennlp.tools.util.ObjectStream<String> samples)
      Initializes a instance.
      Parameters:
      samples - A plain text line stream.
  • Method Details