torch.ConvTranspose2dShape
export type ConvTranspose2dShape<S extends Shape, OutChannels extends number> = Conv2dShape<
S,
OutChannels
>;Sextends ShapeOutChannelsextends numberOutput shape for transposed convolution (deconvolution). Same pattern as convolution - preserves batch, changes channels, spatial is dynamic.