u_net_double_conv2d: Creates a double convolutional U-Net block.

Description Usage Arguments Value

View source: R/u_net.R

Description

Creates a double convolutional U-Net block.

Usage

1
2
3
4
5
6
7
u_net_double_conv2d(
  input,
  filters,
  kernel_size,
  batch_normalization = TRUE,
  kernel_initializer = "he_normal"
)

Arguments

input

Model or layer object.

filters

Integer, the dimensionality of the output space (i.e. the number of output filters in the convolution).

kernel_size

An integer or list of 2 integers, specifying the width and height of the 2D convolution window. Can be a single integer to specify the same value for all spatial dimensions.

batch_normalization

Should batch normalization be used in the block.

kernel_initializer

Initializer for the kernel weights matrix.

Value

Double convolutional U-Net block.


maju116/platypus documentation built on Oct. 18, 2020, 9:40 a.m.