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