Make.Dropout
type neuron_typ = {
mutable rate : float;
mutable in_shape : int array;
mutable out_shape : int array;
}
val create : float -> neuron_typ
val connect : int array -> neuron_typ -> unit
val copy : neuron_typ -> neuron_typ
val run : Optimise.Algodiff.t -> neuron_typ -> Optimise.Algodiff.t
val to_string : neuron_typ -> string
val to_name : unit -> string