Main Content

fullyConnectedLayer

Fully connected layer

Description

A fully connected layer multiplies input vectors by a weight matrix and then adds a bias vector.

Creation

Description

layer = fullyConnectedLayer(outputSize) returns a fully connected layer and sets the OutputSize property.

layer = fullyConnectedLayer(outputSize,dim) also sets the OperationDimension property. (since R2026a)

layer = fullyConnectedLayer(outputSize,Name=Value) sets optional properties using one or more name-value arguments.

example

Input Arguments

expand all

Output size for the fully connected layer, specified as a positive integer.

The layer operation flattens the dimensions specified by the OperationDimension property, then multiplies by the weights matrix and adds the bias vector for each element in remaining dimensions, independently. (since R2026a)

Before R2026a: The layer operation flattens the "S" (spatial), "C" (channel), and "U" (unspecified) dimensions of the input data, then multiplies by the weights matrix and adds the bias vector for each element in the "B" (batch) and "T" (time) dimensions, independently.

This argument sets the OutputSize property.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Since R2026a

Operation dimension, specified as one of these values:

  • "spatial-channel" — Flatten the "S" (spatial) and "C" (channel) dimensions of the input data, then multiply by the weights matrix and add the bias vector for each element in the "B" (batch), "T" (time), and "U" (unspecified) dimensions, independently.

  • positive integer — Use the specified dimension of the layer input data X as the inner dimension of the matrix multiplication Weights*X in the layer operation, and apply the operation independently for each of the remaining dimensions.

This argument sets the OperationDimension property.

Data Types: single | double | char | string

Name-Value Arguments

expand all

Specify optional pairs of arguments as Name1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: fullyConnectedLayer(10,Name="fc1") creates a fully connected layer with an output size of 10 and the name "fc1".

Since R2026a

Learnable parameters from other layers, specified as a string array, character vector, or cell array of character vectors of zero or more of these values:

  • "weights" — Receive weights from another layer. If the InputLearnables property specifies that the layer receives weights from another layer, then the layer has an additional input with the name "weights". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Weights property.

  • "bias" — Receive biases from another layer. If the InputLearnables property specifies that the layer receives biases from another layer, then the layer has an additional input with the name "bias". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Bias property.

If InputLearnables specifies that the layer receives weights or biases from another layer, then the corresponding properties that contain the initializer, learnable parameters, learning rate factor, and L2 regularization factor must be [].

For more information, see Neural Network Weight Tying.

This argument sets the InputLearnables property.

Since R2026a

Learnable parameters to output to other layers, specified as a string array, character vector, or cell array of character vectors of zero or more of these values:

  • "weights" — Output weights to another layer. If the OutputLearnables property specifies that the layer outputs weights to another layer, then the layer has an additional output with the name "weights". In this case, the layer uses this output to pass the weights to other layers.

  • "bias" — Output biases to another layer. If the OutputLearnables property specifies that the layer outputs biases to another layer, then the layer has an additional output with the name "bias". In this case, the layer uses this output to pass the bias to other layers.

For more information, see Neural Network Weight Tying.

This argument sets the OutputLearnables property.

Function to initialize the weights, specified as one of these values:

  • "glorot" — Initialize the weights with the Glorot initializer [1] (also known as Xavier initializer). The Glorot initializer independently samples from a normal distribution with zero mean and variance 2/(InputSize + OutputSize).

  • "he" — Initialize the weights with the He initializer [2]. The He initializer samples from a normal distribution with zero mean and variance 2/InputSize.

  • "orthogonal" — Initialize the input weights with Q, the orthogonal matrix given by the QR decomposition of Z = QR for a random matrix Z sampled from a unit normal distribution. [3]

  • "narrow-normal" — Initialize the weights by independently sampling from a normal distribution with zero mean and standard deviation 0.01.

  • "zeros" — Initialize the weights with zeros.

  • "ones" — Initialize the weights with ones.

  • Function handle — Initialize the weights with a custom function. If you specify a function handle, then the function syntax must be of the form weights = func(sz), where sz is the size of the weights. For an example, see Specify Custom Weight Initialization Function.

  • [] (since R2026a) — Do not initialize the weights. Use the weights from the 'weights' input instead.

The layer only initializes the weights when the Weights property is [] and the InputLearnables property does not specify that the layer receives weights from another layer.

This argument sets the WeightsInitializer property.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | char | string | function_handle

Function to initialize the biases, specified as one of these values:

  • "zeros" — Initialize the biases with zeros.

  • "ones" — Initialize the biases with ones.

  • "narrow-normal" — Initialize the biases by independently sampling from a normal distribution with a mean of zero and a standard deviation of 0.01.

  • Function handle — Initialize the biases with a custom function. If you specify a function handle, then the function must have the form bias = func(sz), where sz is the size of the biases.

  • [] (since R2026a) — Do not initialize the bias. Use the bias from the 'bias' input instead.

The layer only initializes the weights when the Bias property is [] and the InputLearnables property does not specify that the layer receives biases from another layer.

This argument sets the BiasInitializer property.

Data Types: char | string | function_handle

Initial layer weights, specified as a matrix.

If the InputLearnables property specifies that the layer receives weights from another layer, then the layer has an additional input with the name "weights". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Weights property. (since R2026a)

The layer weights are learnable parameters. You can specify the initial value of the weights directly using the Weights property of the layer. When you train a network, if the Weights property is nonempty, then the trainnet function uses the Weights property as the initial value. If the Weights property is empty and the InputLearnables property does not specify that the layer receives weights from another layer, then the software uses the initializer specified by the WeightsInitializer property.

At training time, Weights is an OutputSize-by-InputSize matrix.

If InputLearnables specifies that the layer receives weights from another layer, then the WeightsInitializer, Weights, WeightLearnRateFactor, and WeightL2Factor properties must be [].

This argument sets the Weights property.

Data Types: single | double

Initial layer biases, specified as a vector.

If the InputLearnables property specifies that the layer receives biases from another layer, then the layer has an additional input with the name "bias". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Bias property. (since R2026a)

The layer biases are learnable parameters. When you train a neural network, if the Bias property is nonempty, then the trainnet function uses the Bias property as the initial value. If Bias is empty and the InputLearnables property does not specify that the layer receives biases from another layer, then software uses the initializer specified by the BiasInitializer property.

At training time, Bias is an OutputSize-by-1 vector.

If InputLearnables specifies that the layer receives biases from another layer, then the BiasInitializer, Bias, BiasLearnRateFactor, and BiasL2Factor properties must be [].

This argument sets the Bias property.

Data Types: single | double

Learning rate factor for the weights, specified as one of these values:

  • Nonnegative scalar — Use the specified learning rate factor.

  • [] (since R2026a) — Use learning rate factor from another layer.

The software multiplies this factor by the global learning rate to determine the learning rate for the weights in this layer. For example, if WeightLearnRateFactor is 2, then the learning rate for the weights in this layer is twice the current global learning rate. The software determines the global learning rate based on the settings you specify using the trainingOptions function.

If InputLearnables is "weights", then the Weights, WeightsInitializer, WeightLearnRateFactor, and WeightL2Factor properties must be empty.

This argument sets the WeightLearnRateFactor property.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Learning rate factor for the biases, specified as one of these:

  • Nonnegative scalar — Use the specified learning rate factor.

  • [] (since R2026a) — Use learning rate factor from another layer.

The software multiplies this factor by the global learning rate to determine the learning rate for the biases in this layer. For example, if BiasLearnRateFactor is 2, then the learning rate for the biases in the layer is twice the current global learning rate. The software determines the global learning rate based on the settings you specify using the trainingOptions function.

If InputLearnables specifies that the layer receives biases from another layer, then the BiasInitializer, Bias, BiasLearnRateFactor, and BiasL2Factor properties must be [].

This argument sets the BiasLearnRateFactor property.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

L2 regularization factor for the weights, specified as one of these values:

  • Nonnegative scalar — Use the specified regularization factor.

  • [] (since R2026a) — Use regularization factor from another layer.

The software multiplies this factor by the global L2 regularization factor to determine the L2 regularization for the weights in this layer. For example, if WeightL2Factor is 2, then the L2 regularization for the weights in this layer is twice the global L2 regularization factor. You can specify the global L2 regularization factor using the trainingOptions function.

If InputLearnables specifies that the layer receives weights from another layer, then the WeightsInitializer, Weights, WeightLearnRateFactor, and WeightL2Factor properties must be [].

This argument sets the WeightL2Factor property.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

L2 regularization factor for the biases, specified as one of these:

  • Nonnegative scalar — Use the specified regularization factor.

  • [] (since R2026a) — Use regularization factor from another layer.

The software multiplies this factor by the global L2 regularization factor to determine the L2 regularization for the biases in this layer. For example, if BiasL2Factor is 2, then the L2 regularization for the biases in this layer is twice the global L2 regularization factor. The software determines the global L2 regularization factor based on the settings you specify using the trainingOptions function.

If InputLearnables specifies that the layer receives biases from another layer, then the BiasInitializer, Bias, BiasLearnRateFactor, and BiasL2Factor properties must be [].

This argument sets the BiasL2Factor property.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Layer name, specified as a character vector or a string scalar. For Layer array input, the trainnet and dlnetwork functions automatically assign names to unnamed layers.

This argument sets the Name property.

Data Types: char | string

Properties

expand all

Fully Connected

This property is read-only after object creation. To set this property, use the corresponding positional input argument when you create the FullyConnectedLayer object.

Output size for the fully connected layer, specified as a positive integer.

The layer operation flattens the dimensions specified by the OperationDimension property, then multiplies by the weights matrix and adds the bias vector for each element in remaining dimensions, independently. (since R2026a)

Before R2026a: The layer operation flattens the "S" (spatial), "C" (channel), and "U" (unspecified) dimensions of the input data, then multiplies by the weights matrix and adds the bias vector for each element in the "B" (batch) and "T" (time) dimensions, independently.

Data Types: double

Since R2026a

This property is read-only after object creation. To set this property, use the corresponding positional input argument when you create the FullyConnectedLayer object.

Operation dimension, specified as one of these values:

  • 'spatial-channel' — Flatten the "S" (spatial) and "C" (channel) dimensions of the input data, then multiply by the weights matrix and add the bias vector for each element in the "B" (batch), "T" (time), and "U" (unspecified) dimensions, independently.

  • positive integer — Use the specified dimension of the layer input data X as the inner dimension of the matrix multiplication Weights*X in the layer operation, and apply the operation independently for each of the remaining dimensions.

Data Types: double | char

Input size for the layer, specified as a positive integer or 'auto'. If InputSize is 'auto', then the software automatically determines the input size during training.

Data Types: double | char

Weight Tying

Since R2026a

This property is read-only after object creation. To set this property, use the corresponding name-value argument when you create the FullyConnectedLayer object.

Learnable parameters from other layers, specified as a cell array of zero or more of these values:

  • 'Weights' — Receive weights from another layer. If the InputLearnables property specifies that the layer receives weights from another layer, then the layer has an additional input with the name "weights". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Weights property.

  • 'Bias' — Receive biases from another layer. If the InputLearnables property specifies that the layer receives biases from another layer, then the layer has an additional input with the name "bias". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Bias property.

If InputLearnables specifies that the layer receives weights or biases from another layer, then the corresponding properties that contain the initializer, learnable parameters, learning rate factor, and L2 regularization factor must be [].

For more information, see Neural Network Weight Tying.

Data Types: cell

Since R2026a

This property is read-only after object creation. To set this property, use the corresponding name-value argument when you create the FullyConnectedLayer object.

Learnable parameters to output to other layers, specified as a cell array of character vectors of zero or more of these values:

  • 'Weights' — Output weights to another layer. If the OutputLearnables property specifies that the layer outputs weights to another layer, then the layer has an additional output with the name "weights". In this case, the layer uses this output to pass the weights to other layers.

  • 'Bias' — Output biases to another layer. If the OutputLearnables property specifies that the layer outputs biases to another layer, then the layer has an additional output with the name "bias". In this case, the layer uses this output to pass the bias to other layers.

For more information, see Neural Network Weight Tying.

Data Types: cell

Parameters and Initialization

Function to initialize the weights, specified as one of these values:

  • 'glorot' — Initialize the weights with the Glorot initializer [1] (also known as Xavier initializer). The Glorot initializer independently samples from a normal distribution with zero mean and variance 2/(InputSize + OutputSize).

  • 'he' — Initialize the weights with the He initializer [2]. The He initializer samples from a normal distribution with zero mean and variance 2/InputSize.

  • 'orthogonal' — Initialize the input weights with Q, the orthogonal matrix given by the QR decomposition of Z = QR for a random matrix Z sampled from a unit normal distribution. [3]

  • 'narrow-normal' — Initialize the weights by independently sampling from a normal distribution with zero mean and standard deviation 0.01.

  • 'zeros' — Initialize the weights with zeros.

  • 'ones' — Initialize the weights with ones.

  • Function handle — Initialize the weights with a custom function. If you specify a function handle, then the function syntax must be of the form weights = func(sz), where sz is the size of the weights. For an example, see Specify Custom Weight Initialization Function.

  • [] (since R2026a) — Do not initialize the weights. Use the weights from the 'weights' input instead.

The layer only initializes the weights when the Weights property is [] and the InputLearnables property does not specify that the layer receives weights from another layer.

Data Types: double | char | string | function_handle

Function to initialize the biases, specified as one of these values:

  • 'zeros' — Initialize the biases with zeros.

  • 'ones' — Initialize the biases with ones.

  • 'narrow-normal' — Initialize the biases by independently sampling from a normal distribution with a mean of zero and a standard deviation of 0.01.

  • Function handle — Initialize the biases with a custom function. If you specify a function handle, then the function must have the form bias = func(sz), where sz is the size of the biases.

  • [] (since R2026a) — Do not initialize the bias. Use the bias from the 'bias' input instead.

The layer only initializes the weights when the Bias property is [] and the InputLearnables property does not specify that the layer receives biases from another layer.

Data Types: double | char | string | function_handle

Initial layer weights, specified as a matrix.

If the InputLearnables property specifies that the layer receives weights from another layer, then the layer has an additional input with the name "weights". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Weights property. (since R2026a)

The layer weights are learnable parameters. You can specify the initial value of the weights directly using the Weights property of the layer. When you train a network, if the Weights property is nonempty, then the trainnet function uses the Weights property as the initial value. If the Weights property is empty and the InputLearnables property does not specify that the layer receives weights from another layer, then the software uses the initializer specified by the WeightsInitializer property.

At training time, Weights is an OutputSize-by-InputSize matrix.

If InputLearnables specifies that the layer receives weights from another layer, then the WeightsInitializer, Weights, WeightLearnRateFactor, and WeightL2Factor properties must be [].

Data Types: single | double

Initial layer biases, specified as a vector.

If the InputLearnables property specifies that the layer receives biases from another layer, then the layer has an additional input with the name "bias". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Bias property. (since R2026a)

The layer biases are learnable parameters. When you train a neural network, if the Bias property is nonempty, then the trainnet function uses the Bias property as the initial value. If Bias is empty and the InputLearnables property does not specify that the layer receives biases from another layer, then software uses the initializer specified by the BiasInitializer property.

At training time, Bias is an OutputSize-by-1 vector.

If InputLearnables specifies that the layer receives biases from another layer, then the BiasInitializer, Bias, BiasLearnRateFactor, and BiasL2Factor properties must be [].

Data Types: single | double

Learning Rate and Regularization

Learning rate factor for the weights, specified as one of these values:

  • Nonnegative scalar — Use the specified learning rate factor.

  • [] (since R2026a) — Use learning rate factor from another layer.

The software multiplies this factor by the global learning rate to determine the learning rate for the weights in this layer. For example, if WeightLearnRateFactor is 2, then the learning rate for the weights in this layer is twice the current global learning rate. The software determines the global learning rate based on the settings you specify using the trainingOptions function.

If InputLearnables is "weights", then the Weights, WeightsInitializer, WeightLearnRateFactor, and WeightL2Factor properties must be empty.

Data Types: double

Learning rate factor for the biases, specified as one of these:

  • Nonnegative scalar — Use the specified learning rate factor.

  • [] (since R2026a) — Use learning rate factor from another layer.

The software multiplies this factor by the global learning rate to determine the learning rate for the biases in this layer. For example, if BiasLearnRateFactor is 2, then the learning rate for the biases in the layer is twice the current global learning rate. The software determines the global learning rate based on the settings you specify using the trainingOptions function.

If InputLearnables specifies that the layer receives biases from another layer, then the BiasInitializer, Bias, BiasLearnRateFactor, and BiasL2Factor properties must be [].

Data Types: double

L2 regularization factor for the weights, specified as one of these values:

  • Nonnegative scalar — Use the specified regularization factor.

  • [] (since R2026a) — Use regularization factor from another layer.

The software multiplies this factor by the global L2 regularization factor to determine the L2 regularization for the weights in this layer. For example, if WeightL2Factor is 2, then the L2 regularization for the weights in this layer is twice the global L2 regularization factor. You can specify the global L2 regularization factor using the trainingOptions function.

If InputLearnables specifies that the layer receives weights from another layer, then the WeightsInitializer, Weights, WeightLearnRateFactor, and WeightL2Factor properties must be [].

Data Types: double

L2 regularization factor for the biases, specified as one of these:

  • Nonnegative scalar — Use the specified regularization factor.

  • [] (since R2026a) — Use regularization factor from another layer.

The software multiplies this factor by the global L2 regularization factor to determine the L2 regularization for the biases in this layer. For example, if BiasL2Factor is 2, then the L2 regularization for the biases in this layer is twice the global L2 regularization factor. The software determines the global L2 regularization factor based on the settings you specify using the trainingOptions function.

If InputLearnables specifies that the layer receives biases from another layer, then the BiasInitializer, Bias, BiasLearnRateFactor, and BiasL2Factor properties must be [].

Data Types: double

Layer

Layer name, specified as a character vector. For Layer array input, the trainnet and dlnetwork functions automatically assign names to unnamed layers.

Data Types: char

This property is read-only.

Number of inputs to the layer, stored as a positive integer.

The number of inputs depends on the InputLearnables property:

  • The layer, by default, has an input with the name "in" that corresponds to the layer input data.

  • If the InputLearnables property specifies that the layer receives weights from another layer, then the layer has an additional input with the name "weights". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Weights property.

  • If the InputLearnables property specifies that the layer receives biases from another layer, then the layer has an additional input with the name "bias". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Bias property.

Data Types: double

This property is read-only.

Input names, stored as a cell array of character vectors.

The number of inputs depends on the InputLearnables property:

  • The layer, by default, has an input with the name "in" that corresponds to the layer input data.

  • If the InputLearnables property specifies that the layer receives weights from another layer, then the layer has an additional input with the name "weights". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Weights property.

  • If the InputLearnables property specifies that the layer receives biases from another layer, then the layer has an additional input with the name "bias". In this case, the layer uses the values passed to this input for the layer operation. Otherwise, the layer uses the weights in the Bias property.

Data Types: cell

Number of outputs from the layer, stored as a positive integer.

The number of outputs depends on the OutputLearnables property:

  • The layer, by default, has an output with the name "out" that corresponds to the layer output data.

  • If the OutputLearnables property specifies that the layer outputs weights to another layer, then the layer has an additional output with the name "weights". In this case, the layer uses this output to pass the weights to other layers.

  • If the OutputLearnables property specifies that the layer outputs biases to another layer, then the layer has an additional output with the name "bias". In this case, the layer uses this output to pass the bias to other layers.

Data Types: double

This property is read-only.

Output names, stored as a cell array of character vectors.

The number of outputs depends on the OutputLearnables property:

  • The layer, by default, has an output with the name "out" that corresponds to the layer output data.

  • If the OutputLearnables property specifies that the layer outputs weights to another layer, then the layer has an additional output with the name "weights". In this case, the layer uses this output to pass the weights to other layers.

  • If the OutputLearnables property specifies that the layer outputs biases to another layer, then the layer has an additional output with the name "bias". In this case, the layer uses this output to pass the bias to other layers.

Data Types: cell

Examples

collapse all

Create a fully connected layer with an output size of 10 and the name fc1.

layer = fullyConnectedLayer(10,Name="fc1")
layer = 
  FullyConnectedLayer with properties:

                  Name: 'fc1'

   Hyperparameters
             InputSize: 'auto'
            OutputSize: 10
    OperationDimension: 'spatial-channel'

   Learnable Parameters
               Weights: []
                  Bias: []

  Show all properties

Include a fully connected layer in a Layer array.

layers = [ ...
    imageInputLayer([28 28 1])
    convolution2dLayer(5,20)
    reluLayer
    maxPooling2dLayer(2,Stride=2)
    fullyConnectedLayer(10)
    softmaxLayer]
layers = 
  6×1 Layer array with layers:

     1   ''   Image Input       28×28×1 images with 'zerocenter' normalization
     2   ''   2-D Convolution   20 5×5 convolutions with stride [1  1] and padding [0  0  0  0]
     3   ''   ReLU              ReLU
     4   ''   2-D Max Pooling   2×2 max pooling with stride [2  2] and padding [0  0  0  0]
     5   ''   Fully Connected   Fully connected layer with output size 10
     6   ''   Softmax           Softmax

To specify the weights and bias initializer functions, use the WeightsInitializer and BiasInitializer properties respectively. To specify the weights and biases directly, use the Weights and Bias properties respectively.

Specify Initialization Function

Create a fully connected layer with an output size of 10 and specify the weights initializer to be the He initializer.

outputSize = 10;
layer = fullyConnectedLayer(outputSize,'WeightsInitializer','he')
layer = 
  FullyConnectedLayer with properties:

                  Name: ''

   Hyperparameters
             InputSize: 'auto'
            OutputSize: 10
    OperationDimension: 'spatial-channel'

   Learnable Parameters
               Weights: []
                  Bias: []

  Show all properties

Note that the Weights and Bias properties are empty. At training time, the software initializes these properties using the specified initialization functions.

Specify Custom Initialization Function

To specify your own initialization function for the weights and biases, set the WeightsInitializer and BiasInitializer properties to a function handle. For these properties, specify function handles that take the size of the weights and biases as input and output the initialized value.

Create a fully connected layer with output size 10 and specify initializers that sample the weights and biases from a Gaussian distribution with a standard deviation of 0.0001.

outputSize = 10;
weightsInitializationFcn = @(sz) rand(sz) * 0.0001;
biasInitializationFcn = @(sz) rand(sz) * 0.0001;

layer = fullyConnectedLayer(outputSize, ...
    'WeightsInitializer',@(sz) rand(sz) * 0.0001, ...
    'BiasInitializer',@(sz) rand(sz) * 0.0001)
layer = 
  FullyConnectedLayer with properties:

                  Name: ''

   Hyperparameters
             InputSize: 'auto'
            OutputSize: 10
    OperationDimension: 'spatial-channel'

   Learnable Parameters
               Weights: []
                  Bias: []

  Show all properties

Again, the Weights and Bias properties are empty. At training time, the software initializes these properties using the specified initialization functions.

Specify Weights and Bias Directly

Create a fully connected layer with an output size of 10 and set the weights and bias to W and b in the MAT file FCWeights.mat respectively.

outputSize = 10;
load FCWeights

layer = fullyConnectedLayer(outputSize, ...
    'Weights',W, ...
    'Bias',b)
layer = 
  FullyConnectedLayer with properties:

                  Name: ''

   Hyperparameters
             InputSize: 720
            OutputSize: 10
    OperationDimension: 'spatial-channel'

   Learnable Parameters
               Weights: [10×720 double]
                  Bias: [10×1 double]

  Show all properties

Here, the Weights and Bias properties contain the specified values. At training time, if these properties are non-empty, then the software uses the specified values as the initial weights and biases. In this case, the software does not use the initializer functions.

Algorithms

expand all

References

[1] Glorot, Xavier, and Yoshua Bengio. "Understanding the Difficulty of Training Deep Feedforward Neural Networks." In Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics, 249–356. Sardinia, Italy: AISTATS, 2010. https://proceedings.mlr.press/v9/glorot10a/glorot10a.pdf

[2] He, Kaiming, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. "Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification." In 2015 IEEE International Conference on Computer Vision (ICCV), 1026–34. Santiago, Chile: IEEE, 2015. https://doi.org/10.1109/ICCV.2015.123

[3] Saxe, Andrew M., James L. McClelland, and Surya Ganguli. "Exact Solutions to the Nonlinear Dynamics of Learning in Deep Linear Neural Networks.” Preprint, submitted February 19, 2014. https://arxiv.org/abs/1312.6120.

Extended Capabilities

expand all

Version History

Introduced in R2016a

expand all