public DenseNetstruct

DenseNet(nblocks::NTuple{N, <:Integer};
         growth_rate = 32, reduction = 0.5, nclasses = 1000)

Create a DenseNet model (reference). See also densenet.

Arguments

  • nblocks: number of dense blocks between transitions
  • growth_rate: the output feature map growth rate of dense blocks (i.e. k in the paper)
  • reduction: the factor by which the number of feature maps is scaled across each transition
  • nclasses: the number of output classes