Package opennlp.tools.ml.model
Class Context
java.lang.Object
opennlp.tools.ml.model.Context
- Direct Known Subclasses:
- MutableContext
Class which associates a real valued parameter or expected value with a particular contextual
 predicate or feature. This is used to store maxent model parameters as well as model and empirical
 expected values.
- 
Constructor SummaryConstructorsConstructorDescriptionContext(int[] outcomePattern, double[] parameters) Creates a new parameters object with the specified parameters associated with the specified outcome pattern.
- 
Method Summary
- 
Constructor Details- 
Contextpublic Context(int[] outcomePattern, double[] parameters) Creates a new parameters object with the specified parameters associated with the specified outcome pattern.- Parameters:
- outcomePattern- Array of outcomes for which parameters exists for this context.
- parameters- Parameters for the outcomes specified.
 
 
- 
- 
Method Details- 
getOutcomespublic int[] getOutcomes()- Returns:
- Retrieves the array of outcomes for which parameters exists for this context.
 
- 
getParameterspublic double[] getParameters()- Returns:
- Retrieves the array of parameters for the outcomes of this context.
 
- 
hashCodepublic int hashCode()
- 
equals
 
-