Module Owl_symbolic_ops_object_detection.RoiAlign

type t = {
mutable name : string;
mutable input : string array;
mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
mutable out_shape : int array option array;
mutable mode : [ `avg | `max ];
mutable output_height : int;
mutable output_width : int;
mutable sampling_ratio : int;
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