Module Owl_symbolic_ops_nn.MaxPool

type t = {
mutable name : string;
mutable input : string array;
mutable output : string array;
mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
mutable out_shape : int array option array;
mutable auto_pad : string;
mutable ceil_mode : int;
mutable dilations : int array;
mutable kernel_shp : int array;
mutable pads : int array option;
mutable storage_order : int;
mutable strides : int array;
}
val op_type : string
val create : ?⁠output:string array -> ?⁠padding:Owl_symbolic_types.pad -> ?⁠strides:int array -> ?⁠dilations:int array -> ?⁠name:string -> string -> int array -> t