GradientDescentPartial

class GradientDescentPartial : MixtureOptimizer!T(
alias PartialDerivative
T
) if (
isFloatingPoint!T
) {}

Constructors

this
this(size_t k, size_t maxLength)

Constructor

Members

Functions

eval
void eval(bool delegate(T a, T b) @(nogc) nothrow findRootTolerance)
Undocumented in source. Be warned that the author may not have intended to support it.
update
void update()
Undocumented in source. Be warned that the author may not have intended to support it.

Parameters

PartialDerivative

Partial derivative y of objective convex function u: du/dω_j = y(ω_j), 1 <= j <= n.

Meta