View source: R/createCustomUnetModel.R
createSysuMediaUnetModel3D | R Documentation |
3-D variant of the sysu_media U-net architecture
createSysuMediaUnetModel3D(
inputImageSize,
numberOfFilters = NULL,
anatomy = "wmh"
)
inputImageSize |
Used for specifying the input tensor shape.
This will be |
numberOfFilters |
specifies schedule for the encoding/decoding layers. |
anatomy |
"wmh" or "claustrum". Vestigial option from the original 2-D version. |
a u-net keras model
Tustison NJ
## Not run:
model <- createSysuMediaUnetModel3D( c( 64, 64, 64, 2 ), numberOfFilters = c( 64, 128, 256, 512 ) )
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.