Uses of Interface
opennlp.model.EventStream

Packages that use EventStream
opennlp.maxent Provides main functionality of the maxent package including data structures and algorithms for parameter estimation. 
opennlp.model   
 

Uses of EventStream in opennlp.maxent
 

Classes in opennlp.maxent that implement EventStream
 class BasicEventStream
          A object which can deliver a stream of training events assuming that each event is represented as a separated list containing all the contextual predicates, with the last item being the outcome.
 class RealBasicEventStream
           
 

Methods in opennlp.maxent with parameters of type EventStream
static MaxentModel TrainEval.train(EventStream events, int cutoff)
           
static GISModel GIS.trainModel(EventStream eventStream)
          Train a model using the GIS algorithm, assuming 100 iterations and no cutoff.
static GISModel GIS.trainModel(EventStream eventStream, boolean smoothing)
          Train a model using the GIS algorithm, assuming 100 iterations and no cutoff.
static GISModel GIS.trainModel(EventStream eventStream, int iterations, int cutoff)
          Train a model using the GIS algorithm.
static GISModel GIS.trainModel(EventStream eventStream, int iterations, int cutoff, boolean smoothing, boolean printMessagesWhileTraining)
          Train a model using the GIS algorithm.
static GISModel GIS.trainModel(EventStream eventStream, int iterations, int cutoff, double sigma)
          Train a model using the GIS algorithm.
 

Uses of EventStream in opennlp.model
 

Classes in opennlp.model that implement EventStream
 class AbstractEventStream
           
 class EventCollectorAsStream
          A wrapper to turn EventCollectors created for Maxent 1.0 into EventStreams for Maxent 1.2.
 class FileEventStream
          Class for using a file of events as an event stream.
 class HashSumEventStream
           
 class ListEventStream
           
 class RealValueFileEventStream
           
 class SequenceStreamEventStream
          Class which turns a sequence stream into an event stream.
 

Methods in opennlp.model with parameters of type EventStream
static AbstractModel TrainUtil.train(EventStream events, Map<String,String> trainParams, Map<String,String> reportMap)
           
 

Constructors in opennlp.model with parameters of type EventStream
HashSumEventStream(EventStream eventStream)
           
OnePassDataIndexer(EventStream eventStream)
          One argument constructor for DataIndexer which calls the two argument constructor assuming no cutoff.
OnePassDataIndexer(EventStream eventStream, int cutoff)
           
OnePassDataIndexer(EventStream eventStream, int cutoff, boolean sort)
          Two argument constructor for DataIndexer.
OnePassRealValueDataIndexer(EventStream eventStream, int cutoff)
          Two argument constructor for DataIndexer.
OnePassRealValueDataIndexer(EventStream eventStream, int cutoff, boolean sort)
           
TwoPassDataIndexer(EventStream eventStream)
          One argument constructor for DataIndexer which calls the two argument constructor assuming no cutoff.
TwoPassDataIndexer(EventStream eventStream, int cutoff)
           
TwoPassDataIndexer(EventStream eventStream, int cutoff, boolean sort)
          Two argument constructor for DataIndexer.
 



Copyright © 2011 The Apache Software Foundation. All Rights Reserved.