Uses of Enum Class
org.tribuo.math.optimisers.SGD.Momentum
Packages that use SGD.Momentum
-
Uses of SGD.Momentum in org.tribuo.math.optimisers
Subclasses with type arguments of type SGD.Momentum in org.tribuo.math.optimisersFields in org.tribuo.math.optimisers declared as SGD.MomentumModifier and TypeFieldDescriptionGradientOptimiserOptions.momentumUse momentum in SGD.protected SGD.MomentumSGD.useMomentumShould it use momentum.Methods in org.tribuo.math.optimisers that return SGD.MomentumModifier and TypeMethodDescriptionstatic SGD.MomentumReturns the enum constant of this class with the specified name.static SGD.Momentum[]SGD.Momentum.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.tribuo.math.optimisers with parameters of type SGD.MomentumModifier and TypeMethodDescriptionstatic SGDSGD.getLinearDecaySGD(double learningRate, double rho, SGD.Momentum momentumType) Generates an SGD optimiser with a linearly decaying learning rate initialised to learningRate, with momentum.static SGDSGD.getSimpleSGD(double learningRate, double rho, SGD.Momentum momentumType) Generates an SGD optimiser with a constant learning rate set to learningRate, with momentum.static SGDSGD.getSqrtDecaySGD(double learningRate, double rho, SGD.Momentum momentumType) Generates an SGD optimiser with a sqrt decaying learning rate initialised to learningRate, with momentum.