Neuron.GRU
type neuron_typ =
Owl_neural_generic.Make_Embedded(Engine).Neuron.GRU.neuron_typ =
{
mutable wxz : Optimise.Algodiff.t;
mutable whz : Optimise.Algodiff.t;
mutable wxr : Optimise.Algodiff.t;
mutable whr : Optimise.Algodiff.t;
mutable wxh : Optimise.Algodiff.t;
mutable whh : Optimise.Algodiff.t;
mutable bz : Optimise.Algodiff.t;
mutable br : Optimise.Algodiff.t;
mutable bh : Optimise.Algodiff.t;
mutable h : Optimise.Algodiff.t;
mutable init_typ : Init.typ;
mutable in_shape : int array;
mutable out_shape : int array;
}
val create : ?time_steps:int -> ?inputs:int -> int -> 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 -> Optimise.Algodiff.t array
val mkpri : neuron_typ -> Optimise.Algodiff.t array
val mkadj : neuron_typ -> Optimise.Algodiff.t array
val update : neuron_typ -> Optimise.Algodiff.t array -> unit
val copy : neuron_typ -> neuron_typ
val run : Optimise.Algodiff.t -> neuron_typ -> Optimise.Algodiff.t
val to_string : neuron_typ -> string