Neuron.Embedding
type neuron_typ =
Owl_neural_generic.Make_Embedded(Engine).Neuron.Embedding.neuron_typ =
{
mutable w : Optimise.Algodiff.t;
mutable init_typ : Init.typ;
mutable in_dim : int;
mutable in_shape : int array;
mutable out_shape : int array;
}
val create : ?inputs:int -> 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