Class NegLogLikelihood
java.lang.Object
opennlp.tools.ml.maxent.quasinewton.NegLogLikelihood
- All Implemented Interfaces:
Function
- Direct Known Subclasses:
ParallelNegLogLikelihood
Evaluate negative log-likelihood and its gradient from
DataIndexer
.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
double[]
double[]
gradientAt
(double[] x) Computes the gradient.double
valueAt
(double[] x) Computes the negative log-likelihood.
-
Constructor Details
-
NegLogLikelihood
- Parameters:
indexer
- TheDataIndexer
to use as input provider.
-
-
Method Details
-
getDimension
public int getDimension()- Specified by:
getDimension
in interfaceFunction
- Returns:
- Retrieves the dimension value.
-
getInitialPoint
public double[] getInitialPoint()- Returns:
- Retrieves the initial point as
double
array.
-
valueAt
public double valueAt(double[] x) Computes the negative log-likelihood.- Specified by:
valueAt
in interfaceFunction
- Parameters:
x
- The input.- Returns:
- Returns the computed negative log-likelihood.
- Throws:
IllegalArgumentException
- Thrown if parameters were invalid.
-
gradientAt
public double[] gradientAt(double[] x) Computes the gradient.- Specified by:
gradientAt
in interfaceFunction
- Parameters:
x
- The input.- Returns:
- Returns the computed gradient.
- Throws:
IllegalArgumentException
- Thrown if parameters were invalid.
-