Module Make.Input

type neuron_typ = {
  1. mutable in_shape : int array;
  2. mutable out_shape : int array;
}
val create : int array -> neuron_typ
val copy : neuron_typ -> neuron_typ
val to_string : neuron_typ -> string
val to_name : unit -> string