U-Net: Convolutional Networks for Biomedical Image Segmentation
1 2 | unet(input_shape, num_classes = 1, dropout = 0.5, filters = 64,
num_layers = 4, output_activation = "sigmoid")
|
input_shape |
Dimensionality of the input (integer) not including the samples axis. Must be lenght 3 numeric vector. |
num_classes |
Number of classes. |
dropout |
Dropout rate applied. |
filters |
Number of filters of the first convolution. |
num_layers |
Number of layers in the encoder. |
output_activation |
Activation in the output layer. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.