Package opennlp.tools.ml.model
Klasse TwoPassDataIndexer
java.lang.Object
opennlp.tools.ml.model.AbstractDataIndexer
opennlp.tools.ml.model.TwoPassDataIndexer
- Alle implementierten Schnittstellen:
DataIndexer
Collecting event and context counts by making two passes over the events.
The first pass determines which contexts will be used by the model, and the second pass creates the events in memory containing only the contexts which will be used. This greatly reduces the amount of memory required for storing the events. During the first pass a temporary event file is created which is read during the second pass.
- Siehe auch:
-
Feldübersicht
Von Klasse geerbte Felder opennlp.tools.ml.model.AbstractDataIndexer
SORT_DEFAULT, SORT_PARAM
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
index
(ObjectStream<Event> eventStream) Performs the data indexing.Von Klasse geerbte Methoden opennlp.tools.ml.model.AbstractDataIndexer
getContexts, getNumEvents, getNumTimesEventsSeen, getOutcomeLabels, getOutcomeList, getPredCounts, getPredLabels, getValues, init
-
Konstruktordetails
-
TwoPassDataIndexer
public TwoPassDataIndexer()
-
-
Methodendetails
-
index
Performs the data indexing.Note: Make sure the
DataIndexer.init(TrainingParameters, Map)
method is called first.- Parameter:
eventStream
- AObjectStream<Event>
of events used as input.- Löst aus:
IOException
- Thrown if IO errors occurred during indexing.
-