Klasse LeipzigLanguageSampleStream

java.lang.Object
opennlp.tools.formats.leipzig.LeipzigLanguageSampleStream
Alle implementierten Schnittstellen:
AutoCloseable, ObjectStream<LanguageSample>

public class LeipzigLanguageSampleStream extends Object implements ObjectStream<LanguageSample>
  • Konstruktordetails

    • LeipzigLanguageSampleStream

      public LeipzigLanguageSampleStream(File leipzigFolder, int sentencesPerSample, int samplesPerLanguage) throws IOException
      Parameter:
      leipzigFolder - The directory which contains files to process.
      sentencesPerSample - The number of sentences per sample.
      samplesPerLanguage - The number of samples per language to process at maximum.
      Löst aus:
      IOException - Thrown if IO errors occurred.
  • Methodendetails

    • read

      public LanguageSample read() throws IOException
      Beschreibung aus Schnittstelle kopiert: ObjectStream
      Returns the next ObjectStream object. Calling this method repeatedly until it returns null will return each object from the underlying source exactly once.
      Angegeben von:
      read in Schnittstelle ObjectStream<LanguageSample>
      Gibt zurück:
      The next object or null to signal that the stream is exhausted.
      Löst aus:
      IOException - Thrown if there is an error during reading.
    • reset

      public void reset() throws IOException
      Beschreibung aus Schnittstelle kopiert: ObjectStream
      Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly. This method can be used to re-read the stream if multiple passes over the objects are required.

      The implementation of this method is optional.

      Angegeben von:
      reset in Schnittstelle ObjectStream<LanguageSample>
      Löst aus:
      IOException - Thrown if there is an error during resetting the stream.