View source: R/createCustomUnetModel.R
createHyperMapp3rUnetModel3D | R Documentation |
Creates a keras model implementation of the u-net architecture described here:
createHyperMapp3rUnetModel3D(inputImageSize, dataFormat = "channels_last")
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). |
dataFormat |
One of "channels_first" or "channels_last". We do this for this specific architecture as the original weights were saved in "channels_first" format. |
\url{https://pubmed.ncbi.nlm.nih.gov/35088930/}
with the implementation available here:
\url{https://github.com/mgoubran/HyperMapp3r}
a u-net keras model
Tustison NJ
## Not run:
model <- createHyperMapp3rUnetModel3D( c( 2, 224, 224, 224 ) )
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.