Optimise.Learning_Rate
type typ = Owl_neural_neuron.Make(Owl_optimise_generic.Make(Owl_algodiff_generic.Make(A))).Optimise.Learning_Rate.typ =
| Adagrad of float
| Const of float
| Decay of float * float
| Exp_decay of float * float
| RMSprop of float * float
| Adam of float * float * float
| Schedule of float array
val run : typ -> int -> Algodiff.t -> Algodiff.t array -> Algodiff.t
val default : typ -> typ
val update_ch : typ -> Algodiff.t -> Algodiff.t array -> Algodiff.t array
val to_string : typ -> string