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 42 5.61%
Retrieval 39 5.21%
Question Answering 29 3.88%
Large Language Model 23 3.07%
Decoder 17 2.27%
Semantic Segmentation 15 2.01%
Image Classification 15 2.01%
Sentence 13 1.74%
Text Generation 13 1.74%

Components


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

Categories