Module Learnin Rate¶
operalib.learningrate implements the learning rate for (Stochastic)
gradient descent algorithms
-
class
operalib.learningrate.Constant(eta=1)[source]¶ Constant learning rate.

Attributes: - eta : float default 1.
Methods
__call__(step)Return learning rate at time t. get_rate(step)Return learning rate at time t.
