Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. mutable name : string;
  2. mutable input : string array;
  3. mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
  4. mutable out_shape : int array option array;
  5. mutable mode : [ `avg | `max ];
  6. mutable output_height : int;
  7. mutable output_width : int;
  8. mutable sampling_ratio : int;
  9. mutable spatial_scale : float;
}
val op_type : string
val create : ?mode:[ `avg | `max ] -> ?height:int -> ?width:int -> ?ratio:int -> ?scale:float -> ?name:string -> string -> string -> string -> t