Class CrossValidationPartitioner.TrainingSampleStream<E>
java.lang.Object
opennlp.tools.util.eval.CrossValidationPartitioner.TrainingSampleStream<E>
- Type Parameters:
E- The generic type of samples.
- All Implemented Interfaces:
AutoCloseable, opennlp.tools.util.ObjectStream<E>
- Enclosing class:
CrossValidationPartitioner<E>
public static class CrossValidationPartitioner.TrainingSampleStream<E>
extends Object
implements opennlp.tools.util.ObjectStream<E>
The
CrossValidationPartitioner.TrainingSampleStream which iterates over
all training elements.
Note:
After the CrossValidationPartitioner.TestSampleStream was obtained
the CrossValidationPartitioner.TrainingSampleStream must not be used
anymore, otherwise a IllegalStateException
is thrown.
The streams must not be used anymore after the
CrossValidationPartitioner was moved to one of next partitions.
If they are called anyway an IllegalStateException is thrown.
-
Method Summary
Modifier and TypeMethodDescriptionvoidclose()opennlp.tools.util.ObjectStream<E> Retrieves theObjectStreamover the test/evaluations elements and poisons thisCrossValidationPartitioner.TrainingSampleStream.read()voidreset()Resets the training sample.
-
Method Details
-
read
- Specified by:
readin interfaceopennlp.tools.util.ObjectStream<E>- Throws:
IOException
-
reset
Resets the training sample. Use this if you need to collect things before training, for example, to collect induced abbreviations or create a POS Dictionary.- Specified by:
resetin interfaceopennlp.tools.util.ObjectStream<E>- Throws:
IOException- Thrown if IO errors occurred.IllegalStateException- Thrown if a non-consistent state occurred.
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceopennlp.tools.util.ObjectStream<E>- Throws:
IOException
-
getTestSampleStream
Retrieves theObjectStreamover the test/evaluations elements and poisons thisCrossValidationPartitioner.TrainingSampleStream. From now on calls to the hasNext and next methods are forbidden and will raise anIllegalArgumentException.- Returns:
- The test sample
stream. - Throws:
IOException
-