Package opennlp.tools.doccat
Class DocumentSampleStream
- java.lang.Object
-
- opennlp.tools.util.FilterObjectStream<String,DocumentSample>
-
- opennlp.tools.doccat.DocumentSampleStream
-
- All Implemented Interfaces:
AutoCloseable
,ObjectStream<DocumentSample>
public class DocumentSampleStream extends FilterObjectStream<String,DocumentSample>
Reads in string encoded training samples, parses them and outputsDocumentSample
objects.Format:
Each line contains one sample document.
The category is the first string in the line followed by a tab and whitespace separated document tokens.Sample line:
category-string tab-char whitespace-separated-tokens line-break-char(s)
- See Also:
DocumentSample
-
-
Constructor Summary
Constructors Constructor Description DocumentSampleStream(ObjectStream<String> samples)
Initializes ainstance
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DocumentSample
read()
Returns the nextObjectStream
object.-
Methods inherited from class opennlp.tools.util.FilterObjectStream
close, reset
-
-
-
-
Constructor Detail
-
DocumentSampleStream
public DocumentSampleStream(ObjectStream<String> samples)
Initializes ainstance
.- Parameters:
samples
- A plain textline stream
.
-
-
Method Detail
-
read
public DocumentSample read() throws IOException
Description copied from interface:ObjectStream
Returns the nextObjectStream
object. Calling this method repeatedly until it returnsnull
will return each object from the underlying source exactly once.- Returns:
- The next object or
null
to signal that the stream is exhausted. - Throws:
IOException
- Thrown if there is an error during reading.
-
-