AI Terms Dictionary

A comprehensive multilingual AI terminology dictionary

Definition

In neural networks, ‘dense’ refers to fully connected layers where each neuron receives input from all neurons in the preceding layer. This contrasts with sparse connections found in convolutional or recurrent architectures. Dense layers are fundamental for learning complex non-linear mappings between inputs and outputs, serving as the primary mechanism for feature integration and decision-making in feedforward networks.

Summary

A layer or tensor where every element is connected to every element of the previous layer or dimension.

Key Concepts

Use Cases

Code Example

1
2
import tensorflow as tf
layer = tf.keras.layers.Dense(64, activation='relu')