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 auto_pad : string;
  6. mutable dilations : int array;
  7. mutable pads : int array option;
  8. mutable strides : int array;
  9. mutable group : int;
  10. mutable dim : int;
}
val op_type : string
val create : ?name:string -> ?dim:int -> ?strides:int array -> ?padding:Owl_symbolic_types.pad -> ?dilations:int array -> ?bias_name:string -> string -> string -> t