Neuron.AvgPool1D
type neuron_typ = Make_Embedded(A).Neuron.AvgPool1D.neuron_typ = {
mutable padding : Owl_types.padding;
mutable kernel : int array;
mutable stride : int array;
mutable in_shape : int array;
mutable out_shape : int array;
}
val create : Owl_types.padding -> int array -> int array -> 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