Module Owl_symbolic_ops_nn.ConvTranspose

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 auto_pad : string;
mutable dilations : int array;
mutable pads : int array option;
mutable strides : int array;
mutable group : int;
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