owl-symbolic
  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. mutable name : string;
  2. mutable input : string array;
  3. mutable output : string array;
  4. mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
  5. mutable out_shape : int array option array;
  6. mutable auto_pad : string;
  7. mutable ceil_mode : int;
  8. mutable dilations : int array;
  9. mutable kernel_shp : int array;
  10. mutable pads : int array option;
  11. mutable storage_order : int;
  12. 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