|
| class | AddDecomposableGradient< FunctionType, HasDecomposableEvaluateWithGradient, HasDecomposableGradient > |
| | The AddDecomposableGradient mixin class will add a decomposable Gradient() method if a decomposable EvaluateWithGradient() function exists, or nothing otherwise. More...
|
| |
| class | AddDecomposableGradient< FunctionType, HasDecomposableEvaluateWithGradient, true > |
| | Reflect the existing Gradient(). More...
|
| |
| class | AddDecomposableGradient< FunctionType, true, false > |
| | If we have a decomposable EvaluateWithGradient() but not a decomposable Gradient(), add a decomposable Evaluate() method. More...
|
| |
| class | AddDecomposableGradientConst< FunctionType, HasDecomposableEvaluateWithGradient, HasDecomposableGradient > |
| | The AddDecomposableGradientConst mixin class will add a decomposable const Gradient() method if a decomposable const EvaluateWithGradient() function exists, or nothing otherwise. More...
|
| |
| class | AddDecomposableGradientConst< FunctionType, HasDecomposableEvaluateWithGradient, true > |
| | Reflect the existing Gradient(). More...
|
| |
| class | AddDecomposableGradientConst< FunctionType, true, false > |
| | If we have a decomposable const EvaluateWithGradient() but not a decomposable const Gradient(), add a decomposable const Gradient() method. More...
|
| |
| class | AddDecomposableGradientStatic< FunctionType, HasDecomposableEvaluateWithGradient, HasDecomposableGradient > |
| | The AddDecomposableEvaluateStatic mixin class will add a decomposable static Gradient() method if a decomposable static EvaluateWithGradient() function exists, or nothing otherwise. More...
|
| |
| class | AddDecomposableGradientStatic< FunctionType, HasDecomposableEvaluateWithGradient, true > |
| | Reflect the existing Gradient(). More...
|
| |
| class | AddDecomposableGradientStatic< FunctionType, true, false > |
| | If we have a decomposable EvaluateWithGradient() but not a decomposable Gradient(), add a decomposable Gradient() method. More...
|
| |
- Author
- Ryan Curtin
Adds a decomposable Gradient() function if a decomposable EvaluateWithGradient() function exists.
mlpack is free software; you may redistribute it and/or modify it under the terms of the 3-clause BSD license. You should have received a copy of the 3-clause BSD license along with mlpack. If not, see http://www.opensource.org/licenses/BSD-3-Clause for more information.
Definition in file add_decomposable_gradient.hpp.