Package opennlp.tools.ml.perceptron
Class PerceptronModel
java.lang.Object
opennlp.tools.ml.model.AbstractModel
opennlp.tools.ml.perceptron.PerceptronModel
- All Implemented Interfaces:
MaxentModel
A
model
implementation based one the perceptron algorithm.
Each outcome is represented as a binary perceptron classifier. This supports standard (integer) weighting as well average weighting as described in: Discriminative Training Methods for Hidden Markov Models: Theory and Experiments with the Perceptron Algorithm. Michael Collins, EMNLP 2002.
-
Nested Class Summary
Nested classes/interfaces inherited from class opennlp.tools.ml.model.AbstractModel
AbstractModel.ModelType
-
Constructor Summary
ConstructorDescriptionPerceptronModel
(Context[] params, String[] predLabels, String[] outcomeNames) Initializes aPerceptronModel
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
static double[]
eval
(int[] context, double[] prior, EvalParameters model) Evaluates aPerceptronModel
.double[]
Evaluates acontext
.double[]
Evaluates acontext
.double[]
Evaluates acontext
with the specified contextvalues
.double[]
int
hashCode()
Methods inherited from class opennlp.tools.ml.model.AbstractModel
getAllOutcomes, getBestOutcome, getDataStructures, getIndex, getModelType, getNumOutcomes, getOutcome
-
Constructor Details
-
PerceptronModel
Initializes aPerceptronModel
.- Parameters:
params
- Theparameters
to set.predLabels
- The predicted labels.outcomeNames
- The names of the outcomes.
-
-
Method Details
-
eval
Evaluates acontext
.- Parameters:
context
- An array of String names of the contextual predicates which are to be evaluated together.- Returns:
- An array of the probabilities for each of the different
outcomes, all of which sum to
1
.
-
eval
Evaluates acontext
with the specified contextvalues
.- Parameters:
context
- An array of String names of the contextual predicates which are to be evaluated together.values
- The values associated with each context.- Returns:
- An array of the probabilities for each of the different
outcomes, all of which sum to
1
.
-
eval
Evaluates acontext
.- Parameters:
context
- An array of String names of the contextual predicates which are to be evaluated together.probs
- An array which is populated with the probabilities for each of the different outcomes, all of which sum to 1.- Returns:
- An array of the probabilities for each of the different
outcomes, all of which sum to
1
.
-
eval
-
eval
Evaluates aPerceptronModel
.- Parameters:
context
- The context parameters asint[]
.prior
- The data prior to the evaluation asdouble[]
.model
- TheEvalParameters
used for evaluation.- Returns:
- The resulting evaluation data as
double[]
.
-
hashCode
public int hashCode()- Overrides:
hashCode
in classAbstractModel
-
equals
- Overrides:
equals
in classAbstractModel
-