Feedforward Networks

Dense Connections

Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output by a weight. This means there are $n_{\text{inputs}}*n_{\text{outputs}}$ parameters, which can lead to a lot of parameters for a sizeable network.

$$h_{l} = g\left(\textbf{W}^{T}h_{l-1}\right)$$

where $g$ is an activation function.

Image Source: Deep Learning by Goodfellow, Bengio and Courville

Papers


Paper Code Results Date Stars

Tasks


Task Papers Share
Language Modelling 49 6.57%
Retrieval 37 4.96%
Semantic Segmentation 28 3.75%
Question Answering 27 3.62%
Large Language Model 23 3.08%
Object Detection 14 1.88%
Sentence 12 1.61%
Image Classification 12 1.61%
Image Segmentation 12 1.61%

Components


Component Type
🤖 No Components Found You can add them if they exist; e.g. Mask R-CNN uses RoIAlign

Categories