sig
type neuron_typ = {
mutable rate : float;
mutable in_shape : int array;
mutable out_shape : int array;
}
val create : float -> Owl_neural_neuron.Dropout.neuron_typ
val connect : int array -> Owl_neural_neuron.Dropout.neuron_typ -> unit
val run :
Owl_algodiff.S.t ->
Owl_neural_neuron.Dropout.neuron_typ -> Owl_algodiff.S.t
val to_string : Owl_neural_neuron.Dropout.neuron_typ -> string
end