SgdOptimizer
class SgdOptimizer @JvmOverloads constructor(lr: Double, momentum: Double = 0.0, weightDecay: Double = 0.0) : Optimizer(source)
Stochastic Gradient Descent optimizer with optional momentum and weight decay.
Stochastic Gradient Descent optimizer with optional momentum and weight decay.