List of Deep Learning Layers
This page provides a list of deep learning layers in MATLAB®.
To learn how to create networks from layers for different tasks, see the following examples.
Task | Learn More |
---|---|
Create deep learning networks for image classification or regression. | Create Simple Deep Learning Neural Network for Classification |
Create deep learning networks for sequence and time-series data. | |
Create deep learning network for audio data. | Train Speech Command Recognition Model Using Deep Learning |
Create deep learning network for text data. |
Deep Learning Layers
Use the following functions to create different layer types. Alternatively, use the Deep Network Designer app to create networks interactively.
To learn how to define your own custom layers, see Define Custom Deep Learning Layers.
Input Layers
Layer | Description |
---|---|
An image input layer inputs 2-D images to a neural network and applies data normalization. | |
A 3-D image input layer inputs 3-D images or volumes to a neural network and applies data normalization. | |
A sequence input layer inputs sequence data to a neural network and applies data normalization. | |
A feature input layer inputs feature data to a neural network and applies data normalization. Use this layer when you have a data set of numeric scalars representing features (data without spatial or time dimensions). | |
An input layer inputs data into a neural network with a custom format. | |
| A point cloud input layer inputs 3-D point clouds to a network and applies data normalization. You can also input point cloud data such as 2-D lidar scans. |
Convolution and Fully Connected Layers
Layer | Description |
---|---|
A 1-D convolutional layer applies sliding convolutional filters to 1-D input. | |
A 2-D convolutional layer applies sliding convolutional filters to 2-D input. | |
A 3-D convolutional layer applies sliding cuboidal convolution filters to 3-D input. | |
A 2-D grouped convolutional layer separates the input channels into groups and applies sliding convolutional filters. Use grouped convolutional layers for channel-wise separable (also known as depth-wise separable) convolution. | |
A transposed 1-D convolution layer upsamples one-dimensional feature maps. | |
A transposed 2-D convolution layer upsamples two-dimensional feature maps. | |
A transposed 3-D convolution layer upsamples three-dimensional feature maps. | |
A fully connected layer multiplies the input by a weight matrix and then adds a bias vector. |
Sequence Layers
Layer | Description |
---|---|
A sequence input layer inputs sequence data to a neural network and applies data normalization. | |
An LSTM layer is an RNN layer that learns long-term dependencies between time steps in time-series and sequence data. | |
An LSTM projected layer is an RNN layer that learns long-term dependencies between time steps in time-series and sequence data using projected learnable weights. | |
A bidirectional LSTM (BiLSTM) layer is an RNN layer that learns bidirectional long-term dependencies between time steps of time-series or sequence data. These dependencies can be useful when you want the RNN to learn from the complete time series at each time step. | |
A GRU layer is an RNN layer that learns dependencies between time steps in time-series and sequence data. | |
A GRU projected layer is an RNN layer that learns dependencies between time steps in time-series and sequence data using projected learnable weights. | |
A 1-D convolutional layer applies sliding convolutional filters to 1-D input. | |
A transposed 1-D convolution layer upsamples one-dimensional feature maps. | |
A 1-D max pooling layer performs downsampling by dividing the input into 1-D pooling regions, then computing the maximum of each region. | |
A 1-D average pooling layer performs downsampling by dividing the input into 1-D pooling regions, then computing the average of each region. | |
A 1-D global max pooling layer performs downsampling by outputting the maximum of the time or spatial dimensions of the input. | |
A flatten layer collapses the spatial dimensions of the input into the channel dimension. | |
| A word embedding layer maps word indices to vectors. |
| A peephole LSTM layer is a variant of an LSTM layer, where the gate calculations use the layer cell state. |
Activation Layers
Layer | Description |
---|---|
A ReLU layer performs a threshold operation to each element of the input, where any value less than zero is set to zero. | |
A leaky ReLU layer performs a threshold operation, where any input value less than zero is multiplied by a fixed scalar. | |
A clipped ReLU layer performs a threshold operation, where any input value less than zero is set to zero and any value above the clipping ceiling is set to that clipping ceiling. | |
An ELU activation layer performs the identity operation on positive inputs and an exponential nonlinearity on negative inputs. | |
A Gaussian error linear unit (GELU) layer weights the input by its probability under a Gaussian distribution. | |
A hyperbolic tangent (tanh) activation layer applies the tanh function on the layer inputs. | |
A swish activation layer applies the swish function on the layer inputs. | |
| A softplus layer applies the softplus activation function Y = log(1 +
eX), which ensures that the output is always positive. This activation function is
a smooth continuous version of reluLayer . You can
incorporate this layer into the deep neural networks you define for actors in reinforcement
learning agents. This layer is useful for creating continuous Gaussian policy deep neural
networks, for which the standard deviation output must be positive. |
A softmax layer applies a softmax function to the input. | |
A sigmoid layer applies a sigmoid function to the input such that the output is bounded in the interval (0,1). | |
A function layer applies a specified function to the layer input. | |
A PReLU layer performs a threshold operation, where for each channel, any input value less than zero is multiplied by a scalar learned at training time. | |
| A SReLU layer performs a thresholding operation, where for each channel, the layer scales values outside an interval. The interval thresholds and scaling factors are learnable parameters. |
| A mish activation layer applies the mish function on layer inputs. |
Normalization Layers
Layer | Description |
---|---|
A batch normalization layer normalizes a mini-batch of data across all observations for each channel independently. To speed up training of the convolutional neural network and reduce the sensitivity to network initialization, use batch normalization layers between convolutional layers and nonlinearities, such as ReLU layers. | |
A group normalization layer normalizes a mini-batch of data across grouped subsets of channels for each observation independently. To speed up training of the convolutional neural network and reduce the sensitivity to network initialization, use group normalization layers between convolutional layers and nonlinearities, such as ReLU layers. | |
An instance normalization layer normalizes a mini-batch of data across each channel for each observation independently. To improve the convergence of training the convolutional neural network and reduce the sensitivity to network hyperparameters, use instance normalization layers between convolutional layers and nonlinearities, such as ReLU layers. | |
A layer normalization layer normalizes a mini-batch of data across all channels for each observation independently. To speed up training of recurrent and multilayer perceptron neural networks and reduce the sensitivity to network initialization, use layer normalization layers after the learnable layers, such as LSTM and fully connected layers. | |
A channel-wise local response (cross-channel) normalization layer carries out channel-wise normalization. |
Utility Layers
Layer | Description |
---|---|
A dropout layer randomly sets input elements to zero with a given probability. | |
A spatial dropout layer randomly selects input channels with a given probability, and sets all its elements to zero during training. | |
A 2-D crop layer applies 2-D cropping to the input. | |
A 3-D crop layer crops a 3-D volume to the size of the input feature map. | |
identityLayer
| An identity layer is a layer whose output is identical to its input. You can use an identity layer to create a skip connection, which allows the input to skip one or more layers in the main branch of a neural network. For more information about skip connections, see More About. |
A network layer contains a nested network. Use network layers to simplify building large networks that contain repeating components. | |
A complex-to-real layer converts complex-valued data to real-valued data by splitting the data in a specified dimension. | |
A real-to-complex layer converts real-valued data to complex-valued data by merging the data in a specified dimension. | |
| A scaling layer linearly scales and biases an input array U , giving an output Y = Scale.*U + Bias . You can incorporate this layer into the deep neural networks you define for actors or critics in reinforcement learning agents. This layer is useful for scaling and shifting the outputs of nonlinear layers, such as tanhLayer and sigmoid. |
| A quadratic layer takes an input vector and outputs a vector of quadratic monomials constructed from the input elements. This layer is useful when you need a layer whose output is a quadratic function of its inputs. For example, to recreate the structure of quadratic value functions such as those used in LQR controller design. |
| An STFT layer computes the short-time Fourier transform of the input. |
| An ISTFT layer computes the inverse short-time Fourier transform of the input. |
| A CWT layer computes the continuous wavelet transform of the input. |
| An ICWT layer computes the inverse continuous wavelet transform of the input. |
| A MODWT layer computes the maximal overlap discrete wavelet transform (MODWT) and MODWT multiresolution analysis (MRA) of the input. |
Resizing Layers
Layer | Description |
---|---|
| A 2-D resize layer resizes 2-D input by a scale factor, to a specified height and width, or to the size of a reference input feature map. |
| A 3-D resize layer resizes 3-D input by a scale factor, to a specified height, width, and depth, or to the size of a reference input feature map. |
dlhdl.layer.reshapeLayer (Deep Learning HDL Toolbox) | A reshape layer reshapes layer activation data. |
Pooling and Unpooling Layers
Layer | Description |
---|---|
A 1-D average pooling layer performs downsampling by dividing the input into 1-D pooling regions, then computing the average of each region. | |
A 2-D average pooling layer performs downsampling by dividing the input into rectangular pooling regions, then computing the average of each region. | |
A 3-D average pooling layer performs downsampling by dividing three-dimensional input into cuboidal pooling regions, then computing the average values of each region. | |
A 2-D adaptive average pooling layer performs downsampling to give you the desired output size by dividing the input into rectangular pooling regions, then computing the average of each region. | |
A 1-D global average pooling layer performs downsampling by outputting the average of the time or spatial dimensions of the input. | |
A 2-D global average pooling layer performs downsampling by computing the mean of the height and width dimensions of the input. | |
A 3-D global average pooling layer performs downsampling by computing the mean of the height, width, and depth dimensions of the input. | |
A 1-D max pooling layer performs downsampling by dividing the input into 1-D pooling regions, then computing the maximum of each region. | |
A 2-D max pooling layer performs downsampling by dividing the input into rectangular pooling regions, then computing the maximum of each region. | |
A 3-D max pooling layer performs downsampling by dividing three-dimensional input into cuboidal pooling regions, then computing the maximum of each region. | |
A 1-D global max pooling layer performs downsampling by outputting the maximum of the time or spatial dimensions of the input. | |
A 2-D global max pooling layer performs downsampling by computing the maximum of the height and width dimensions of the input. | |
A 3-D global max pooling layer performs downsampling by computing the maximum of the height, width, and depth dimensions of the input. | |
A 2-D max unpooling layer unpools the output of a 2-D max pooling layer. |
Combination Layers
Layer | Description |
---|---|
An addition layer adds inputs from multiple neural network layers element-wise. | |
A multiplication layer multiplies inputs from multiple neural network layers element-wise. | |
A depth concatenation layer takes inputs that have the same height and width and concatenates them along the channel dimension. | |
A concatenation layer takes inputs and concatenates them along a specified dimension. The inputs must have the same size in all dimensions except the concatenation dimension. | |
| A weighted addition layer scales and adds inputs from multiple neural network layers element-wise. |
Transformer Layers
Layer | Description |
---|---|
A self-attention layer computes single-head or multihead self-attention of its input. | |
A dot-product attention layer focuses on parts of the input using weighted multiplication operations. | |
A position embedding layer maps sequential or spatial indices to vectors. | |
A sinusoidal position encoding layer maps position indices to vectors using sinusoidal operations. | |
An embedding concatenation layer combines its input and an embedding vector by concatenation. | |
A 1-D indexing layer extracts the data from the specified index of the time or spatial dimensions of the input data. | |
| A patch embedding layer maps patches of pixels to vectors. |
Neural ODE Layers
Layer | Description |
---|---|
A neural ODE layer outputs the solution of an ODE. |
Object Detection Layers
Layer | Description |
---|---|
| An ROI max pooling layer outputs fixed size feature maps for every rectangular ROI within the input feature map. Use this layer to create a Fast or Faster R-CNN object detection network. |
| An ROI align layer outputs fixed size feature maps for every rectangular ROI within an input feature map. Use this layer to create a Mask R-CNN network. |
| An SSD merge layer merges the outputs of feature maps for subsequent regression and classification loss computation. |
| A transform layer of the you only look once version 2 (YOLO v2) network transforms the bounding box predictions of the last convolution layer in the network to fall within the bounds of the ground truth. Use the transform layer to improve the stability of the YOLO v2 network. |
| A space to depth layer permutes the spatial blocks of the input into the depth dimension. Use this layer when you need to combine feature maps of different size without discarding any feature data. |
| A 2-D depth to space layer permutes data from the depth dimension into blocks of 2-D spatial data. |
| A slice layer divides the input to the layer into an equal number of groups along the channel dimension of the image. |
See Also
trainnet
| trainingOptions
| dlnetwork
| Deep Network
Designer
Related Topics
- List of Deep Learning Layer Blocks
- Example Deep Learning Networks Architectures
- Build Networks with Deep Network Designer
- Define Custom Deep Learning Layers
- Create Simple Deep Learning Neural Network for Classification
- Sequence Classification Using Deep Learning
- Pretrained Deep Neural Networks
- Deep Learning Tips and Tricks