upsampling2x
fun <T : DType, V> upsampling2x(inChannels: Int, outChannels: Int, kernelSize: Pair<Int, Int> = 4 to 4, padding: Pair<Int, Int> = 1 to 1, bias: Boolean = true, name: String = "TransposedConv2d_2x", initWeights: Tensor<T, V>, initBias: Tensor<T, V>? = null): TransposedConv2d<T, V>(source)
Creates a standard 2x upsampling transposed convolution.