fn
conv_transpose3d_op
→TensorImplPtrint conv_transpose3d_op(const int & x, const int & W, const int & b, int stride_d, int stride_h, int stride_w, int pad_d, int pad_h, int pad_w, int opad_d, int opad_h, int opad_w)Python wrappers
Public Python APIs implemented by this engine symbol.Three-dimensional transposed convolution.
The 3-D extension used in volumetric decoders, video generators and medical-image synthesis. All three spatial axes are upsampled simultaneously.
Parameters
xTensorImplPtrInput of shape
(B, C_in, D, H, W).WTensorImplPtrFilters of shape
(C_in, C_out, KD, KH, KW).bTensorImplPtrBias of shape
(C_out,) or empty.stride_d, stride_h, stride_wint= NonePer-axis upsampling factor. Default:
1.pad_d, pad_h, pad_wint= NonePer-axis padding subtracted from each output extent. Default:
0.opad_d, opad_h, opad_wint= NonePer-axis one-sided output padding. Default:
0.Returns
TensorImplPtrOutput of shape (B, C_out, D_out, H_out, W_out) with each output extent following for .