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 54 6.26%
Retrieval 42 4.87%
Question Answering 33 3.82%
Large Language Model 30 3.48%
Decoder 23 2.67%
Semantic Segmentation 22 2.55%
Image Classification 17 1.97%
Sentence 15 1.74%
Classification 15 1.74%

Components


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

Categories