View source: R/createCustomUnetModel.R
createNoBrainerUnetModel3D | R Documentation |
Creates a keras model implementation of the u-net architecture avaialable here:
createNoBrainerUnetModel3D(inputImageSize)
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). |
\url{https://github.com/neuronets/nobrainer/}
a u-net keras model
Tustison NJ
library( ANTsRNet )
model <- createNoBrainerUnetModel3D( list( NULL, NULL, NULL, 1 ) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.