Module Owl_neural_neuron.Input

module Input: sig .. end

type neuron_typ = {
   mutable in_shape : int array;
   mutable out_shape : int array;
}
val create : int array -> neuron_typ
val run : Owl_algodiff.S.t -> neuron_typ -> Owl_algodiff.S.t
val to_string : neuron_typ -> string