Description Usage Arguments Value
Creates a convolutional Darknet53 unit.
1 2 3 4 5 6 7 8  | darknet53_conv2d(
  input,
  strides,
  filters,
  kernel_size,
  batch_normalization = TRUE,
  leaky_relu = TRUE
)
 | 
input | 
 Model or layer object.  | 
strides | 
 An integer or list of 2 integers, specifying the strides of the convolution along the width and height.  | 
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 unit.  | 
leaky_relu | 
 Should leaky ReLU activation function be used in the unit.  | 
Convolutional Darknet53 unit.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.