package owl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type neuron_typ = Owl_neural_neuron.Make(Owl_dense_ndarray.D).Recurrent.neuron_typ = {
  1. mutable whh : t;
  2. mutable wxh : t;
  3. mutable why : t;
  4. mutable bh : t;
  5. mutable by : t;
  6. mutable h : t;
  7. mutable hiddens : int;
  8. mutable act : Activation.typ;
  9. mutable init_typ : Init.typ;
  10. mutable in_shape : int array;
  11. mutable out_shape : int array;
}
val create : ?time_steps:int -> ?inputs:int -> int -> int -> Activation.typ -> Init.typ -> neuron_typ
val connect : int array -> neuron_typ -> unit
val init : neuron_typ -> unit
val reset : neuron_typ -> unit
val mktag : int -> neuron_typ -> unit
val mkpar : neuron_typ -> t array
val mkpri : neuron_typ -> t array
val mkadj : neuron_typ -> t array
val update : neuron_typ -> t array -> unit
val copy : neuron_typ -> neuron_typ
val run : t -> neuron_typ -> t
val to_string : neuron_typ -> string
val to_name : unit -> string