Uses of Class
org.tribuo.math.optimisers.SGD
Packages that use SGD
-
Uses of SGD in org.tribuo.math.optimisers
Methods in org.tribuo.math.optimisers that return SGDModifier and TypeMethodDescriptionstatic SGDSGD.getLinearDecaySGD(double learningRate) Generates an SGD optimiser with a linearly decaying learning rate initialised to learningRate.static 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) Generates an SGD optimiser with a constant learning rate set to learningRate.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) Generates an SGD optimiser with a sqrt decaying learning rate initialised to learningRate.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.