Class ParallelNegLogLikelihood
java.lang.Object
opennlp.tools.ml.maxent.quasinewton.NegLogLikelihood
opennlp.tools.ml.maxent.quasinewton.ParallelNegLogLikelihood
- All Implemented Interfaces:
Function
Evaluates
negative log-likelihood
and
its gradient in parallel.- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondouble[]
gradientAt
(double[] x) Computes the gradient forx
.double
valueAt
(double[] x) Computes the function value forx
.Methods inherited from class opennlp.tools.ml.maxent.quasinewton.NegLogLikelihood
getDimension, getInitialPoint
-
Constructor Details
-
ParallelNegLogLikelihood
- Parameters:
indexer
- TheDataIndexer
to use as input provider.threads
- The number of thread to compute with in parallel. Must be greater than0
.- Throws:
IllegalArgumentException
- Thrown if parameters were invalid.
-
-
Method Details
-
valueAt
public double valueAt(double[] x) Computes the function value forx
.- Specified by:
valueAt
in interfaceFunction
- Overrides:
valueAt
in classNegLogLikelihood
- 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 forx
.- Specified by:
gradientAt
in interfaceFunction
- Overrides:
gradientAt
in classNegLogLikelihood
- Parameters:
x
- The input.- Returns:
- Returns the computed gradient.
- Throws:
IllegalArgumentException
- Thrown if parameters were invalid.
-