View source: R/createResNetSuperResolutionModel.R
createResNetSuperResolutionModel3D | R Documentation |
Creates a keras model of the expanded image super resolution deep learning framework based on the following python implementation:
createResNetSuperResolutionModel3D(
inputImageSize,
convolutionKernelSize = c(3, 3, 3),
numberOfFilters = 64,
numberOfResidualBlocks = 5,
numberOfResNetBlocks = 1
)
inputImageSize |
Used for specifying the input tensor shape. The shape (or dimension) of that tensor is the image dimensions followed by the number of channels (e.g., red, green, and blue). The batch size (i.e., number of training images) is not specified a priori. |
convolutionKernelSize |
a vector specifying the kernel size for convolution. |
numberOfFilters |
the number of filters for each encoding layer. |
numberOfResidualBlocks |
the number of residual blocks. |
numberOfResNetBlocks |
the number of resNet blocks. Each block will double the upsampling amount. |
\url{https://github.com/titu1994/Image-Super-Resolution}
a keras model for ResNet image super resolution
Tustison NJ
inputImageSize = c(256, 256, 30, 1)
createResNetSuperResolutionModel3D(inputImageSize)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.