Uses of Class
opennlp.model.AbstractModel

Packages that use AbstractModel
opennlp.maxent Provides main functionality of the maxent package including data structures and algorithms for parameter estimation. 
opennlp.maxent.io Provides the I/O functionality of the maxent package including reading and writting models in several formats. 
opennlp.model   
opennlp.perceptron   
 

Uses of AbstractModel in opennlp.maxent
 

Subclasses of AbstractModel in opennlp.maxent
 class GISModel
          A maximum entropy model which has been trained using the Generalized Iterative Scaling procedure (implemented in GIS.java).
 

Uses of AbstractModel in opennlp.maxent.io
 

Methods in opennlp.maxent.io that return AbstractModel
 AbstractModel GISModelReader.constructModel()
          Retrieve a model from disk.
 

Constructors in opennlp.maxent.io with parameters of type AbstractModel
BinaryGISModelWriter(AbstractModel model, DataOutputStream dos)
          Constructor which takes a GISModel and a DataOutputStream and prepares itself to write the model to that stream.
BinaryGISModelWriter(AbstractModel model, File f)
          Constructor which takes a GISModel and a File and prepares itself to write the model to that file.
GISModelWriter(AbstractModel model)
           
ObjectGISModelWriter(AbstractModel model, ObjectOutputStream dos)
          Constructor which takes a GISModel and a ObjectOutputStream and prepares itself to write the model to that stream.
PlainTextGISModelWriter(AbstractModel model, BufferedWriter bw)
          Constructor which takes a GISModel and a BufferedWriter and prepares itself to write the model to that writer.
PlainTextGISModelWriter(AbstractModel model, File f)
          Constructor which takes a GISModel and a File and prepares itself to write the model to that file.
SuffixSensitiveGISModelWriter(AbstractModel model, File f)
          Constructor which takes a GISModel and a File and invokes the GISModelWriter appropriate for the suffix.
 

Uses of AbstractModel in opennlp.model
 

Methods in opennlp.model that return AbstractModel
abstract  AbstractModel AbstractModelReader.constructModel()
           
 AbstractModel GenericModelReader.constructModel()
           
 AbstractModel AbstractModelReader.getModel()
           
static AbstractModel TrainUtil.train(EventStream events, Map<String,String> trainParams, Map<String,String> reportMap)
           
static AbstractModel TrainUtil.train(SequenceStream events, Map<String,String> trainParams, Map<String,String> reportMap)
           
 

Methods in opennlp.model with parameters of type AbstractModel
 Event[] SequenceStream.updateContext(Sequence sequence, AbstractModel model)
          Creates a new event array based on the outcomes predicted by the specified parameters for the specified sequence.
 

Constructors in opennlp.model with parameters of type AbstractModel
GenericModelWriter(AbstractModel model, DataOutputStream dos)
           
GenericModelWriter(AbstractModel model, File file)
           
 

Uses of AbstractModel in opennlp.perceptron
 

Subclasses of AbstractModel in opennlp.perceptron
 class PerceptronModel
           
 

Methods in opennlp.perceptron that return AbstractModel
 AbstractModel PerceptronModelReader.constructModel()
          Retrieve a model from disk.
 AbstractModel PerceptronTrainer.trainModel(int iterations, DataIndexer di, int cutoff)
           
 AbstractModel PerceptronTrainer.trainModel(int iterations, DataIndexer di, int cutoff, boolean useAverage)
           
 AbstractModel SimplePerceptronSequenceTrainer.trainModel(int iterations, SequenceStream sequenceStream, int cutoff, boolean useAverage)
           
 

Constructors in opennlp.perceptron with parameters of type AbstractModel
BinaryPerceptronModelWriter(AbstractModel model, DataOutputStream dos)
          Constructor which takes a GISModel and a DataOutputStream and prepares itself to write the model to that stream.
BinaryPerceptronModelWriter(AbstractModel model, File f)
          Constructor which takes a GISModel and a File and prepares itself to write the model to that file.
PerceptronModelWriter(AbstractModel model)
           
PlainTextPerceptronModelWriter(AbstractModel model, BufferedWriter bw)
          Constructor which takes a PerceptronModel and a BufferedWriter and prepares itself to write the model to that writer.
PlainTextPerceptronModelWriter(AbstractModel model, File f)
          Constructor which takes a PerceptronModel and a File and prepares itself to write the model to that file.
SuffixSensitivePerceptronModelWriter(AbstractModel model, File f)
          Constructor which takes a GISModel and a File and invokes the GISModelWriter appropriate for the suffix.
 



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