SgdOptimizer
class SgdOptimizer(val featureSize: Int, val learningRate: ScalarExpr, concurrency: Concurrency = Concurrency.None) : Optimizer(source)
Plain SGD: delta = -learningRate(step) * weight * gradient. Stateless apart from the global step counter feeding the schedule.
Constructors
SgdOptimizer
constructor(featureSize: Int, learningRate: ScalarExpr, concurrency: Concurrency = Concurrency.None)(source)
Properties
featureSize
Number of weight coordinates this optimizer manages.
learningRate
Per-step learning-rate schedule.