InputType - Input type of the Evaluator. For example, Vector.OutputType - Input type of the Evaluator. For example, Vector.GradientType - Type of the gradient. For example, Matrix when the parameter
and output types are a Vector.@CodeReview(reviewer="Kevin R. Dixon", date="2008-07-23", changesNeeded=false, comments={"Minor change to javadoc.","Looks fine."}) public interface ParameterGradientEvaluator<InputType,OutputType,GradientType> extends Evaluator<InputType,OutputType>, Vectorizable
Vectorizable.| Modifier and Type | Method and Description |
|---|---|
GradientType |
computeParameterGradient(InputType input)
Computes the derivative of the output with respect to the parameters for
a particular input.
|
clone, convertFromVector, convertToVectorGradientType computeParameterGradient(InputType input)
input - Input about which to compute the parameter gradient.