Uses of Class
opennlp.model.Context

Packages that use Context
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.maxent.quasinewton   
opennlp.model   
opennlp.perceptron   
 

Uses of Context in opennlp.maxent
 

Constructors in opennlp.maxent with parameters of type Context
GISModel(Context[] params, String[] predLabels, String[] outcomeNames, int correctionConstant, double correctionParam)
          Creates a new model with the specified parameters, outcome names, and predicate/feature labels.
GISModel(Context[] params, String[] predLabels, String[] outcomeNames, int correctionConstant, double correctionParam, Prior prior)
          Creates a new model with the specified parameters, outcome names, and predicate/feature labels.
 

Uses of Context in opennlp.maxent.io
 

Fields in opennlp.maxent.io declared as Context
protected  Context[] QNModelWriter.params
           
protected  Context[] GISModelWriter.PARAMS
           
 

Methods in opennlp.maxent.io that return Context
protected  Context[] QNModelReader.getParameters()
           
protected  Context[] OldFormatGISModelReader.getParameters(int[][] outcomePatterns)
          Reads the parameters from a file and populates an array of context objects.
 

Uses of Context in opennlp.maxent.quasinewton
 

Constructors in opennlp.maxent.quasinewton with parameters of type Context
QNModel(String[] predNames, String[] outcomeNames, Context[] params, double[] parameters)
           
 

Uses of Context in opennlp.model
 

Subclasses of Context in opennlp.model
 class MutableContext
          Class used to store parameters or expected values associated with this context which can be updated or assigned.
 

Methods in opennlp.model that return Context
protected  Context[] AbstractModelReader.getParameters(int[][] outcomePatterns)
          Reads the parameters from a file and populates an array of context objects.
 Context[] EvalParameters.getParams()
           
 Context[] DynamicEvalParameters.getParams()
           
 

Constructors in opennlp.model with parameters of type Context
AbstractModel(Context[] params, String[] predLabels, IndexHashTable<String> pmap, String[] outcomeNames)
           
AbstractModel(Context[] params, String[] predLabels, String[] outcomeNames)
           
AbstractModel(Context[] params, String[] predLabels, String[] outcomeNames, int correctionConstant, double correctionParam)
           
EvalParameters(Context[] params, double correctionParam, double correctionConstant, int numOutcomes)
          Creates a set of paramters which can be evaulated with the eval method.
EvalParameters(Context[] params, int numOutcomes)
           
 

Constructor parameters in opennlp.model with type arguments of type Context
DynamicEvalParameters(List<? extends Context> params, int numOutcomes)
          Creates a set of paramters which can be evaulated with the eval method.
 

Uses of Context in opennlp.perceptron
 

Fields in opennlp.perceptron declared as Context
protected  Context[] PerceptronModelWriter.PARAMS
           
 

Constructors in opennlp.perceptron with parameters of type Context
PerceptronModel(Context[] params, String[] predLabels, IndexHashTable<String> pmap, String[] outcomeNames)
           
PerceptronModel(Context[] params, String[] predLabels, Map<String,Integer> pmap, String[] outcomeNames)
          Deprecated. use the constructor with the IndexHashTable instead!
PerceptronModel(Context[] params, String[] predLabels, String[] outcomeNames)
           
 



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