View source: R/createCustomUnetModel.R
createSysuMediaUnetModel2D | R Documentation |
Creates a keras model implementation of the u-net architecture in the 2017 MICCAI WMH challenge by the sysu_medial team described here:
createSysuMediaUnetModel2D(inputImageSize, anatomy = c("wmh", "claustrum"))
inputImageSize |
Used for specifying the input tensor shape.
This will be |
anatomy |
"wmh" or "claustrum". |
\url{https://pubmed.ncbi.nlm.nih.gov/30125711/}
or targeting the claustrum:
\url{https://arxiv.org/abs/2008.03465}
with the original implementations available at
\url{https://github.com/hongweilibran/wmh_ibbmTum}
and
\url{https://github.com/hongweilibran/claustrum_multi_view},
respectively.
a u-net keras model
Tustison NJ
## Not run:
model <- createSysuMediaUnetModel2D( c( 200, 200, 1 ) )
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.