TensorTonicTensorTonic
Problems
Study PlansProjectsInterviewPricingFeedback

Research Papers

DenseNet

DenseNet badge
1

Channel Growth

Track how channel counts grow through dense blocks and shrink through compressing transition layers.

2

Composite Layer

The H_l composite function: BatchNorm, ReLU, then a 3x3 convolution producing growth_rate feature maps.

3

Bottleneck Layer

DenseNet-B bottleneck: a 1x1 conv to 4*growth_rate channels before the 3x3 conv, reducing computation.

4

Dense Block

Dense connectivity: each layer's input is the concatenation of all preceding feature maps.

5

Transition Layer

Compress channels with a 1x1 conv (theta) and downsample with 2x2 average pooling between dense blocks.

6

Full Forward

Assemble the full DenseNet: stem conv, dense blocks with transitions, final norm, global pool, classifier.

Loading architecture visualization...