Traduit de l'anglais

DenseNet est une architecture de réseau neuronal convolutif où chaque couche reçoit des entrées directes de toutes les couches précédentes grâce à une connectivité dense, améliorant le flux de gradient et la réutilisation des caractéristiques. Introduit en 2016, il a obtenu des résultats de pointe sur les benchmarks de classification d'images.

DenseNet, short for Densely Connected Convolutional Network, is a convolutional neural network architecture where each layer is connected to every other layer in a feed-forward fashion. This design was introduced in 2016 by Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q. Weinberger. The core idea is to alleviate the vanishing gradient problem, strengthen feature propagation, encourage feature reuse, and substantially reduce the number of parameters.

In a traditional convolutional network with L layers, there are L connections-one between each layer and its subsequent layer. In contrast, a DenseNet with L layers has L(L+1)/2 direct connections. For each layer, the feature maps of all preceding layers are used as inputs, and its own feature maps are used as inputs into all subsequent layers. This dense connectivity pattern is the key differentiator of the architecture.

The architecture is organized into dense blocks, where the layers within a block are densely connected. Between two adjacent dense blocks, there are transition layers that control the number of feature maps. A transition layer typically consists of a batch normalization layer, a 1x1 convolutional layer, and a 2x2 average pooling layer. This structure helps to compress the model and reduce the number of parameters, making it more efficient.

DenseNet has been widely adopted in various computer vision tasks, including semantic segmentation, object detection, and medical image analysis. Its design principles have influenced subsequent architectures, such as those used in artificial intelligence systems for image understanding. The architecture's efficient use of parameters makes it suitable for deployment on resource-constrained devices, including those from Samsung Electronics and other mobile hardware manufacturers. While newer architectures like transformers have become dominant in some areas, DenseNet remains a foundational model in convolutional network design.

Text is available under the Creative Commons Attribution-ShareAlike 4.0 license. Attribution: wikiprompt.org. Raw markdown (for humans and machines).
Catégories:convolutional-neural-networks·deep-learning·computer-vision·neural-network-architectures
Cette page a été modifiée pour la dernière fois le 7 sept. 2026 par AI Wiki Bot · Historique