Package opennlp.tools.namefind
Class NameSampleSequenceStream
- java.lang.Object
-
- opennlp.tools.namefind.NameSampleSequenceStream
-
- All Implemented Interfaces:
AutoCloseable
,SequenceStream
,ObjectStream<Sequence>
public class NameSampleSequenceStream extends Object implements SequenceStream
-
-
Constructor Summary
Constructors Constructor Description NameSampleSequenceStream(ObjectStream<NameSample> psi)
NameSampleSequenceStream(ObjectStream<NameSample> psi, NameContextGenerator pcg)
NameSampleSequenceStream(ObjectStream<NameSample> psi, NameContextGenerator pcg, boolean useOutcomes)
NameSampleSequenceStream(ObjectStream<NameSample> psi, NameContextGenerator pcg, boolean useOutcomes, SequenceCodec<String> seqCodec)
NameSampleSequenceStream(ObjectStream<NameSample> psi, AdaptiveFeatureGenerator featureGen)
NameSampleSequenceStream(ObjectStream<NameSample> psi, AdaptiveFeatureGenerator featureGen, boolean useOutcomes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Closes theObjectStream
and releases all allocated resources.Sequence
read()
Returns the next object.void
reset()
Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly.Event[]
updateContext(Sequence sequence, AbstractModel model)
Creates a new event array based on the outcomes predicted by the specified parameters for the specified sequence.
-
-
-
Constructor Detail
-
NameSampleSequenceStream
public NameSampleSequenceStream(ObjectStream<NameSample> psi) throws IOException
- Throws:
IOException
-
NameSampleSequenceStream
public NameSampleSequenceStream(ObjectStream<NameSample> psi, AdaptiveFeatureGenerator featureGen) throws IOException
- Throws:
IOException
-
NameSampleSequenceStream
public NameSampleSequenceStream(ObjectStream<NameSample> psi, AdaptiveFeatureGenerator featureGen, boolean useOutcomes) throws IOException
- Throws:
IOException
-
NameSampleSequenceStream
public NameSampleSequenceStream(ObjectStream<NameSample> psi, NameContextGenerator pcg) throws IOException
- Throws:
IOException
-
NameSampleSequenceStream
public NameSampleSequenceStream(ObjectStream<NameSample> psi, NameContextGenerator pcg, boolean useOutcomes) throws IOException
- Throws:
IOException
-
NameSampleSequenceStream
public NameSampleSequenceStream(ObjectStream<NameSample> psi, NameContextGenerator pcg, boolean useOutcomes, SequenceCodec<String> seqCodec) throws IOException
- Throws:
IOException
-
-
Method Detail
-
updateContext
public Event[] updateContext(Sequence sequence, AbstractModel model)
Description copied from interface:SequenceStream
Creates a new event array based on the outcomes predicted by the specified parameters for the specified sequence.- Specified by:
updateContext
in interfaceSequenceStream
- Parameters:
sequence
- The sequence to be evaluated.- Returns:
- event array
-
read
public Sequence read() throws IOException
Description copied from interface:ObjectStream
Returns the next object. Calling this method repeatedly until it returns null will return each object from the underlying source exactly once.- Specified by:
read
in interfaceObjectStream<Sequence>
- Returns:
- the next object or null to signal that the stream is exhausted
- Throws:
IOException
- if there is an error during reading
-
reset
public void reset() throws IOException, UnsupportedOperationException
Description copied from interface: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.- Specified by:
reset
in interfaceObjectStream<Sequence>
- Throws:
IOException
- if there is an error during reseting the streamUnsupportedOperationException
-
close
public void close() throws IOException
Description copied from interface:ObjectStream
Closes theObjectStream
and releases all allocated resources. After close was called its not allowed to call read or reset.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceObjectStream<Sequence>
- Throws:
IOException
- if there is an error during closing the stream
-
-