UpSampling3D
Upsampling layer for 3D input.
Repeats the second, third and forth dimensions of the input by size[0]
, size[1]
and size[2]
times, respectively.
Input shape: 5D tensor with shape (batch_size, dim1, dim2, dim3, depth)
.
Output shape: 5D tensor with shape (batch_size, dim1 * size[0], dim2 * size[1], dim3 * size[2], depth)
.
Since
0.3
Constructors
UpSampling3D
Link copied to clipboard
fun UpSampling3D(size: IntArray = intArrayOf(2, 2, 2), name: String = "")
Content copied to clipboard
Functions
Properties
hasActivation
Link copied to clipboard
inboundLayers
Link copied to clipboard
interpolationInternal
Link copied to clipboard
outboundLayers
Link copied to clipboard
outputShape
Link copied to clipboard
parentModel
Link copied to clipboard
sizeInternal
Link copied to clipboard