package owl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type typ =
  1. | Adagrad of float
  2. | Const of float
  3. | Decay of float * float
  4. | Exp_decay of float * float
  5. | RMSprop of float * float
  6. | Schedule of float array
val run : typ -> int -> 'a -> Owl_algodiff.S.t -> Owl_algodiff.S.t
val default : typ -> typ
val update_ch : typ -> Owl_algodiff.S.t array array -> Owl_algodiff.S.t array array -> Owl_algodiff.S.t array array
val to_string : typ -> string