trainnet - Train deep learning neural network - MATLAB (original) (raw)

Main Content

Train deep learning neural network

Since R2023b. Recommended over trainNetwork.

Syntax

Description

[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64) = trainnet([images](#mw%5Ffe3a9a26-312e-416d-91ba-2c6087a01e45),[net](#mw%5F84a59cc0-b6c1-4037-83be-a5bcd3726db3),[lossFcn](#mw%5Fffa5eeae-b6e0-444e-a464-91e257cef95b),[options](#mw%5F8420aa75-5fcb-41b9-bbe4-81fce5d169eb)) trains the neural network specified by net for image tasks using the images and targets specified by images and the training options defined by options.

[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64) = trainnet([images](#mw%5Ffe3a9a26-312e-416d-91ba-2c6087a01e45),[targets](#mw%5F37161d47-80ec-420a-b9d0-492c950b6d6b),[net](#mw%5F84a59cc0-b6c1-4037-83be-a5bcd3726db3),[lossFcn](#mw%5Fffa5eeae-b6e0-444e-a464-91e257cef95b),[options](#mw%5F8420aa75-5fcb-41b9-bbe4-81fce5d169eb)) trains using the images specified by images and targets specified bytargets.

[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64) = trainnet([sequences](#mw%5F8b6c966a-f840-4426-9693-279222b8372f),[net](#mw%5F84a59cc0-b6c1-4037-83be-a5bcd3726db3),[lossFcn](#mw%5Fffa5eeae-b6e0-444e-a464-91e257cef95b),[options](#mw%5F8420aa75-5fcb-41b9-bbe4-81fce5d169eb)) trains a neural network for sequence or time-series tasks (for example, an LSTM or GRU neural network) using the sequences and targets specified bysequences.

[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64) = trainnet([sequences](#mw%5F8b6c966a-f840-4426-9693-279222b8372f),[targets](#mw%5F37161d47-80ec-420a-b9d0-492c950b6d6b),[net](#mw%5F84a59cc0-b6c1-4037-83be-a5bcd3726db3),[lossFcn](#mw%5Fffa5eeae-b6e0-444e-a464-91e257cef95b),[options](#mw%5F8420aa75-5fcb-41b9-bbe4-81fce5d169eb)) trains using the sequences specified by sequences and targets specified by targets.

[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64) = trainnet([features](#mw%5F3621b918-480e-4e6e-b183-cd1574dffdd7),[net](#mw%5F84a59cc0-b6c1-4037-83be-a5bcd3726db3),[lossFcn](#mw%5Fffa5eeae-b6e0-444e-a464-91e257cef95b),[options](#mw%5F8420aa75-5fcb-41b9-bbe4-81fce5d169eb)) trains a neural network for feature tasks (for example, a multilayer perceptron (MLP) neural network) using the feature data and targets specified byfeatures.

example

[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64) = trainnet([features](#mw%5F3621b918-480e-4e6e-b183-cd1574dffdd7),[targets](#mw%5F37161d47-80ec-420a-b9d0-492c950b6d6b),[net](#mw%5F84a59cc0-b6c1-4037-83be-a5bcd3726db3),[lossFcn](#mw%5Fffa5eeae-b6e0-444e-a464-91e257cef95b),[options](#mw%5F8420aa75-5fcb-41b9-bbe4-81fce5d169eb)) trains using the feature data specified by features and targets specified by targets.

[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64) = trainnet([data](#mw%5F4cbdbac4-4749-4aac-bae7-5b83d7a19f39),[net](#mw%5F84a59cc0-b6c1-4037-83be-a5bcd3726db3),[lossFcn](#mw%5Fffa5eeae-b6e0-444e-a464-91e257cef95b),[options](#mw%5F8420aa75-5fcb-41b9-bbe4-81fce5d169eb)) trains a neural network with other data layouts or combinations of different types of data.

[[netTrained](#mw%5F346a21d1-2409-4075-ae02-ea075ac89a64),[info](#mw%5Fe8d15263-9d27-4729-a8cd-ef64547af58c)] = trainnet(___) also returns information on the training using any of the previous syntaxes.

Examples

collapse all

Train Neural Network with Image Data

If you have a data set of images, then you can train a deep neural network using an image input layer.

Unzip the digit sample data and create an image datastore. The imageDatastore function automatically labels the images based on folder names.

unzip("DigitsData.zip")

imds = imageDatastore("DigitsData", ... IncludeSubfolders=true, ... LabelSource="foldernames");

Divide the data into training and test data sets, so that each category in the training set contains 750 images, and the test set contains the remaining images from each label. splitEachLabel splits the image datastore into two new datastores for training and test.

numTrainFiles = 750; [imdsTrain,imdsTest] = splitEachLabel(imds,numTrainFiles,"randomized");

Define the convolutional neural network architecture. Specify the size of the images in the input layer of the network and the number of classes in the final fully connected layer. Each image is 28-by-28-by-1 pixels.

inputSize = [28 28 1]; numClasses = numel(categories(imds.Labels));

layers = [ imageInputLayer(inputSize) convolution2dLayer(5,20) batchNormalizationLayer reluLayer fullyConnectedLayer(numClasses) softmaxLayer];

Specify the training options.

options = trainingOptions("sgdm", ... MaxEpochs=4, ... Verbose=false, ... Plots="training-progress", ... Metrics="accuracy");

Train the neural network. For classification, use cross-entropy loss.

net = trainnet(imdsTrain,layers,"crossentropy",options);

Test the network using the labeled test set.

Extract the image data and labels from the test datastore.

XTest = readall(imdsTest); TTest = imdsTest.Labels; classNames = categories(TTest);

Concatenate the images into a numeric array and convert it to single.

XTest = cat(4,XTest{:}); XTest = single(XTest);

Predict the classification scores using the trained network then convert the predictions to labels using the onehotdecode function.

YTest = minibatchpredict(net,XTest); YTest = onehotdecode(YTest,classNames,2);

Visualize the predictions in a confusion chart.

confusionchart(TTest,YTest)

Figure contains an object of type ConfusionMatrixChart.

Train Network with Tabular Data

If you have a data set of numeric features (for example tabular data without spatial or time dimensions), then you can train a deep neural network using a feature input layer.

Read the transmission casing data from the CSV file "transmissionCasingData.csv".

filename = "transmissionCasingData.csv"; tbl = readtable(filename,TextType="String");

Convert the labels for prediction to categorical using the convertvars function.

labelName = "GearToothCondition"; tbl = convertvars(tbl,labelName,"categorical");

To train a network using categorical features, you must first convert the categorical features to numeric. First, convert the categorical predictors to categorical using the convertvars function by specifying a string array containing the names of all the categorical input variables. In this data set, there are two categorical features with names "SensorCondition" and "ShaftCondition".

categoricalPredictorNames = ["SensorCondition" "ShaftCondition"]; tbl = convertvars(tbl,categoricalPredictorNames,"categorical");

Loop over the categorical input variables. For each variable, convert the categorical values to one-hot encoded vectors using the onehotencode function.

for i = 1:numel(categoricalPredictorNames) name = categoricalPredictorNames(i); tbl.(name) = onehotencode(tbl.(name),2); end

View the first few rows of the table. Notice that the categorical predictors have been split into multiple columns.

SigMean     SigMedian    SigRMS    SigVar     SigPeak    SigPeak2Peak    SigSkewness    SigKurtosis    SigCrestFactor    SigMAD     SigRangeCumSum    SigCorrDimension    SigApproxEntropy    SigLyapExponent    PeakFreq    HighFreqPower    EnvPower    PeakSpecKurtosis    SensorCondition    ShaftCondition    GearToothCondition
________    _________    ______    _______    _______    ____________    ___________    ___________    ______________    _______    ______________    ________________    ________________    _______________    ________    _____________    ________    ________________    _______________    ______________    __________________

-0.94876     -0.9722     1.3726    0.98387    0.81571       3.6314        -0.041525       2.2666           2.0514         0.8081        28562              1.1429             0.031581            79.931            0          6.75e-06       3.23e-07         162.13             0    1             1    0          No Tooth Fault  
-0.97537    -0.98958     1.3937    0.99105    0.81571       3.6314        -0.023777       2.2598           2.0203        0.81017        29418              1.1362             0.037835            70.325            0          5.08e-08       9.16e-08         226.12             0    1             1    0          No Tooth Fault  
  1.0502      1.0267     1.4449    0.98491     2.8157       3.6314         -0.04162       2.2658           1.9487        0.80853        31710              1.1479             0.031565            125.19            0          6.74e-06       2.85e-07         162.13             0    1             0    1          No Tooth Fault  
  1.0227      1.0045     1.4288    0.99553     2.8157       3.6314        -0.016356       2.2483           1.9707        0.81324        30984              1.1472             0.032088             112.5            0          4.99e-06        2.4e-07         162.13             0    1             0    1          No Tooth Fault  
  1.0123      1.0024     1.4202    0.99233     2.8157       3.6314        -0.014701       2.2542           1.9826        0.81156        30661              1.1469              0.03287            108.86            0          3.62e-06       2.28e-07         230.39             0    1             0    1          No Tooth Fault  
  1.0275      1.0102     1.4338     1.0001     2.8157       3.6314         -0.02659       2.2439           1.9638        0.81589        31102              1.0985             0.033427            64.576            0          2.55e-06       1.65e-07         230.39             0    1             0    1          No Tooth Fault  
  1.0464      1.0275     1.4477     1.0011     2.8157       3.6314        -0.042849       2.2455           1.9449        0.81595        31665              1.1417             0.034159            98.838            0          1.73e-06       1.55e-07         230.39             0    1             0    1          No Tooth Fault  
  1.0459      1.0257     1.4402    0.98047     2.8157       3.6314        -0.035405       2.2757            1.955        0.80583        31554              1.1345               0.0353            44.223            0          1.11e-06       1.39e-07         230.39             0    1             0    1          No Tooth Fault  

View the class names of the data set.

classNames = categories(tbl{:,labelName})

classNames = 2x1 cell {'No Tooth Fault'} {'Tooth Fault' }

Set aside data for testing. Partition the data into a training set containing 85% of the data and a test set containing the remaining 15% of the data. To partition the data, use the trainingPartitions function, attached to this example as a supporting file. To access this file, open the example as a live script.

numObservations = size(tbl,1); [idxTrain,idxTest] = trainingPartitions(numObservations,[0.85 0.15]);

tblTrain = tbl(idxTrain,:); tblTest = tbl(idxTest,:);

Convert the data to a format that the trainnet function supports. Convert the predictors and targets to numeric and categorical arrays, respectively. For feature input, the network expects data with rows that correspond to observations and columns that correspond to the features. If your data has a different layout, then you can preprocess your data to have this layout or you can provide layout information using data formats. For more information, see Deep Learning Data Formats.

predictorNames = ["SigMean" "SigMedian" "SigRMS" "SigVar" "SigPeak" "SigPeak2Peak" ... "SigSkewness" "SigKurtosis" "SigCrestFactor" "SigMAD" "SigRangeCumSum" ... "SigCorrDimension" "SigApproxEntropy" "SigLyapExponent" "PeakFreq" ... "HighFreqPower" "EnvPower" "PeakSpecKurtosis" "SensorCondition" "ShaftCondition"]; XTrain = table2array(tblTrain(:,predictorNames)); TTrain = tblTrain.(labelName);

XTest = table2array(tblTest(:,predictorNames)); TTest = tblTest.(labelName);

Define a network with a feature input layer and specify the number of features. Also, configure the input layer to normalize the data using Z-score normalization.

numFeatures = size(XTrain,2); numClasses = numel(classNames);

layers = [ featureInputLayer(numFeatures,Normalization="zscore") fullyConnectedLayer(16) layerNormalizationLayer reluLayer fullyConnectedLayer(numClasses) softmaxLayer];

Specify the training options:

options = trainingOptions("lbfgs", ... ExecutionEnvironment="cpu", ... Plots="training-progress", ... Verbose=false);

Train the network using the trainnet function. For classification, use cross-entropy loss.

net = trainnet(XTrain,TTrain,layers,"crossentropy",options);

Predict the labels of the test data using the trained network. Predict the classification scores using the trained network then convert the predictions to labels using the onehotdecode function.

YTest = minibatchpredict(net,XTest); YTest = onehotdecode(YTest,classNames,2);

Visualize the predictions in a confusion chart.

confusionchart(TTest,YTest)

Figure contains an object of type ConfusionMatrixChart.

Calculate the classification accuracy, The accuracy is the proportion of the labels that the network predicts correctly.

accuracy = mean(YTest == TTest)

Input Arguments

collapse all

Data

images — Image data

numeric array | dlarray object | datastore | minibatchqueue object (since R2024a)

Image data, specified as a numeric array, dlarray object, datastore, or minibatchqueue object.

Tip

For sequences of images, for example video data, use thesequences input argument.

If you have data that fits in memory that does not require additional processing such as data augmentation, then specifying the input data as a numeric array is usually the easiest option. If you want to train with image files stored on disk, or want to apply additional processing such as data augmentation, then using datastores is usually the easiest option. For neural networks with multiple outputs, you must use aTransformedDatastore,CombinedDatastore, orminibatchqueue object.

Tip

Neural networks expect input data with a specific layout. For example, image classification networks typically expect image representations to be_h_-by-_w_-by-c numeric arrays, where h, w, and c are the height, width, and number of channels of the images, respectively. Most neural networks have an input layer that specifies the expected layout of the data.

Most datastores and functions output data in the layout that the network expects. If your data is in a different layout than what the network expects, then indicate that your data has a different layout by using the InputDataFormats training option, specifying the data as a minibatchqueue object and specifying theMiniBatchFormat property, or by specifying input data as a formatteddlarray object. Specifying data formats is usually easier than preprocessing the input data. If you specify both the InputDataFormats training option and the MiniBatchFormat minibatchqueue property, then they must match.

For neural networks that do not have input layers, you must use theInputDataFormats training option, specify the data as aminibatchqueue object and use the InputDataFormats property, or use formatted dlarray objects.

Loss functions expect data with a specific layout. For example for sequence-to-vector regression networks, the loss function typically expects target vectors to be represented as a 1-by-R vector, where R is the number of responses.

Most datastores and functions output data in the layout that the loss function expects. If your target data is in a different layout than what the loss function expects, then indicate that your targets have a different layout by using the TargetDataFormats training option, specifying the data as a minibatchqueue object and specifying the TargetDataFormats property, or by specifying the target data as a formatted dlarray object. Specifying data formats is usually easier than preprocessing the target data. If you specify both the TargetDataFormats training option and theTargetDataFormats minibatchqueue property, then they must match.

For more information, see Deep Learning Data Formats.

Numeric Array or dlarray Object

For data that fits in memory and does not require additional processing like augmentation, you can specify a data set of images as a numeric array or adlarray object. If you specify images as a numeric array or adlarray object, then you must also specify thetargets argument.

The layout of numeric arrays and unformatted dlarray objects depend on the type of image data and must be consistent with theInputDataFormats training option.

Most networks expect image data in these layouts:

Data Layout
2-D images _h_-by-_w_-by-_c_-by-N array, where h, w, and c are the height, width, and number of channels of the images, respectively, and N is the number of images.Data in this layout has the data format "SSCB" (spatial, spatial, channel, batch).
3-D images _h_-by-_w_-by-_d_-by-_c_-by-N array, where h, w, d, and c are the height, width, depth, and number of channels of the images, respectively, and N is the number of images.Data in this layout has the data format "SSSCB" (spatial, spatial, spatial, channel, batch).

For data in a different layout, indicate that your data has a different layout by using the InputDataFormats training option or use a formatteddlarray object. For more information, see Deep Learning Data Formats.

Datastore

Datastores read batches of images and targets. Datastores are best suited when you have data that does not fit in memory or when you want to apply augmentations or transformations to the data.

For image data, the trainnet function supports these datastores:

Datastore Description Example Usage
ImageDatastore Datastore of images saved on disk. Train image classification neural network with images saved on disk, where the images are the same size. When the images are different sizes, use an augmentedImageDatastore object.ImageDatastore objects support training image classification networks only. To use image datastores for to train regression neural networks, create a transformed or combined datastore that contains the images and targets using the transform and combine functions, respectively.
augmentedImageDatastore Datastore that applies random affine geometric transformations, including resizing, rotation, reflection, shear, and translation. Train image classification neural network with images saved on disk, where the images are different sizes.Train image classification neural network and generate new data using augmentations.
TransformedDatastore Datastore that transforms batches of data read from an underlying datastore using a custom transformation function. Train image regression neural network.Train neural networks with multiple inputs.Transform datastores with outputs not supported by thetrainnet function.Apply custom transformations to datastore output.
CombinedDatastore Datastore that reads from two or more underlying datastores. Train image regression neural network.Train neural networks with multiple inputs.Combine predictors and targets from different data sources.
RandomPatchExtractionDatastore (Image Processing Toolbox) Datastore that extracts pairs of random patches from images or pixel label images and optionally applies identical random affine geometric transformations to the pairs. Train neural network for object detection.
DenoisingImageDatastore (Image Processing Toolbox) Datastore that applies randomly generated Gaussian noise. Train neural network for image denoising.
Custom mini-batch datastore Custom datastore that returns mini-batches of data. Train neural network using data in a layout that other datastores do not support.For details, see Develop Custom Mini-Batch Datastore.

To specify the targets, the datastore must output cell arrays or tables withnumInputs+numOutputs columns, wherenumInputs and numOutputs are the number of network inputs and outputs, respectively. The firstnumInputs columns, correspond to the network inputs. The last numOutput columns correspond to the network outputs. TheInputNames and OutputNames properties of the neural network specifies the order of the input and output data, respectively.

Tip

You can use other built-in datastores for testing deep learning neural networks by using the transform and combine functions. These functions can convert the data read from datastores to the layout required by the trainnet function. The required layout of the datastore output depends on the neural network architecture. For more information, see Datastore Customization.

minibatchqueue Object (since R2024a)

For greater control over how the software processes and transforms mini-batches, you can specify data as a minibatchqueue object that returns the predictors and targets.

If you specify data as a minibatchqueue object, then thetrainnet function ignores the MiniBatchSize property of the object and uses the MiniBatchSize training option instead.

To specify the targets, the minibatchqueue must havenumInputs+numOutputs outputs, where numInputs andnumOutputs are the number of network inputs and outputs, respectively. The first numInputs outputs, correspond to the network inputs. The last numOutput outputs correspond to the network outputs. TheInputNames and OutputNames property of the neural network specifies the order of the input and output data, respectively.

Note

This argument supports complex-valued predictors and targets.

sequences — Sequence or time series data

cell array of numeric arrays | cell array of dlarray objects | numeric array | dlarray object | datastore | minibatchqueue object (since R2024a)

Sequence or time series data, specified a numeric array, a cell array of numeric arrays, a dlarray object, a cell array of dlarray objects, datastore, or minibatchqueue object.

If you have sequences of the same length that fit in memory and do not require additional processing, then specifying the input data as a numeric array is usually the easiest option. If you have sequences of different lengths that fit in memory and do not require additional processing, then it is specifying the input data as a cell array of numeric arrays is usually the easiest option. If you want to train with sequences stored on disk, or want to apply additional processing such as custom transformations, then using datastores is usually the easiest option. For neural networks with multiple inputs, you must use a TransformedDatastore or CombinedDatastore object.

Tip

Neural networks expect input data with a specific layout. For example, vector-sequence classification networks typically expect a vector-sequence representations to be_t_-by-c arrays, where t and_c_ are the number of time steps and channels of sequences, respectively. Neural networks typically have an input layer that specifies the expected layout of the data.

Most datastores and functions output data in the layout that the network expects. If your data is in a different layout than what the network expects, then indicate that your data has a different layout by using the InputDataFormats training option, specifying the data as a minibatchqueue object and specifying theMiniBatchFormat property, or by specifying input data as a formatteddlarray object. Specifying data formats is usually easier than preprocessing the input data. If you specify both the InputDataFormats training option and the MiniBatchFormat minibatchqueue property, then they must match.

For neural networks that do not have input layers, you must use theInputDataFormats training option, specify the data as aminibatchqueue object and use the InputDataFormats property, or use formatted dlarray objects.

Loss functions expect data with a specific layout. For example for sequence-to-vector regression networks, the loss function typically expects target vectors to be represented as a 1-by-R vector, where R is the number of responses.

Most datastores and functions output data in the layout that the loss function expects. If your target data is in a different layout than what the loss function expects, then indicate that your targets have a different layout by using the TargetDataFormats training option, specifying the data as a minibatchqueue object and specifying the TargetDataFormats property, or by specifying the target data as a formatted dlarray object. Specifying data formats is usually easier than preprocessing the target data. If you specify both the TargetDataFormats training option and theTargetDataFormats minibatchqueue property, then they must match.

For more information, see Deep Learning Data Formats.

Numeric Array, dlarray Object, or Cell Array

For data that fits in memory and does not require additional processing like custom transformations, you can specify a single sequence as a numeric array or adlarray object or a data set of sequences as a cell array of numeric arrays or dlarray objects. If you specify sequences as a numeric array, cell array, or a dlarray object, then you must also specify the targets argument.

For cell array input, the cell array must be an_N_-by-1 cell array of numeric arrays or dlarray objects, where N is the number of observations. The size and shape of the numeric arrays or dlarray objects that represent sequences depend on the type of sequence data and must be consistent with theInputDataFormats training option.

This table describes the expected layout of data for a neural network with a sequence input layer.

Data Layout
Vector sequences s_-by-c matrices, where_s and c are the numbers of time steps and channels (features) of the sequences, respectively.
1-D image sequences _h_-by-c_-by-s arrays, where h and c correspond to the height and number of channels of the images, respectively, and_s is the sequence length.
2-D image sequences _h_-by-_w_-by-c_-by-s arrays, where h, w, and_c correspond to the height, width, and number of channels of the images, respectively, and s is the sequence length.
3-D image sequences _h_-by-_w_-by-_d_-by-c_-by-s, where h, w, d, and_c correspond to the height, width, depth, and number of channels of the 3-D images, respectively, and s is the sequence length.

For data in a different layout, indicate that your data has a different layout by using the InputDataFormats training option or use a formatteddlarray object. For more information, see Deep Learning Data Formats.

Datastore

Datastores read batches of sequences and targets. Datastores are best suited when you have data that does not fit in memory or when you want to apply transformations to the data.

For sequence and time-series data, the trainnet function supports these datastores:

Datastore Description Example Usage
TransformedDatastore Datastore that transforms batches of data read from an underlying datastore using a custom transformation function. Transform datastores with outputs not supported by thetrainnet function.Apply custom transformations to datastore output.
CombinedDatastore Datastore that reads from two or more underlying datastores. Combine predictors and targets from different data sources.
Custom mini-batch datastore Custom datastore that returns mini-batches of data. Train neural network using data in a layout that other datastores do not support.For details, see Develop Custom Mini-Batch Datastore.

To specify the targets, the datastore must output cell arrays or tables withnumInputs+numOutputs columns, wherenumInputs and numOutputs are the number of network inputs and outputs, respectively. The firstnumInputs columns, correspond to the network inputs. The last numOutput columns correspond to the network outputs. TheInputNames and OutputNames properties of the neural network specifies the order of the input and output data, respectively.

You can use other built-in datastores by using the transform andcombine functions. These functions can convert the data read from datastores to the layout required by the trainnet function. For example, you can transform and combine data read from in-memory arrays and CSV files using ArrayDatastore andTabularTextDatastore objects, respectively. The required layout of the datastore output depends on the neural network architecture. For more information, see Datastore Customization.

minibatchqueue Object (since R2024a)

For greater control over how the software processes and transforms mini-batches, you can specify data as a minibatchqueue object that returns the predictors and targets.

If you specify data as a minibatchqueue object, then thetrainnet function ignores the MiniBatchSize property of the object and uses the MiniBatchSize training option instead.

To specify the targets, the minibatchqueue must havenumInputs+numOutputs outputs, where numInputs andnumOutputs are the number of network inputs and outputs, respectively. The first numInputs outputs, correspond to the network inputs. The last numOutput outputs correspond to the network outputs. TheInputNames and OutputNames property of the neural network specifies the order of the input and output data, respectively.

Note

This argument supports complex-valued predictors and targets.

features — Feature or tabular data

numeric array | dlarray object | table (since R2024a) | datastore | minibatchqueue object (since R2024a)

Feature or tabular data, specified as a numeric array, datastore, table, orminibatchqueue object.

If you have data that fits in memory that does not require additional processing, then specifying the input data as a numeric array or table is usually the easiest option. If you want to train with feature or tabular data stored on disk, or want to apply additional processing such as custom transformations, then using datastores is usually the easiest option. For neural networks with multiple inputs, you must use aTransformedDatastore or CombinedDatastore object.

Tip

Neural networks expect input data with a specific layout. For example feature classification networks typically expect feature and tabular data representations to be 1-by-c vectors, where c is the number features of the data. Neural networks typically have an input layer that specifies the expected layout of the data.

Most datastores and functions output data in the layout that the network expects. If your data is in a different layout than what the network expects, then indicate that your data has a different layout by using the InputDataFormats training option, specifying the data as a minibatchqueue object and specifying theMiniBatchFormat property, or by specifying input data as a formatteddlarray object. Specifying data formats is usually easier than preprocessing the input data. If you specify both the InputDataFormats training option and the MiniBatchFormat minibatchqueue property, then they must match.

For neural networks that do not have input layers, you must use theInputDataFormats training option, specify the data as aminibatchqueue object and use the InputDataFormats property, or use formatted dlarray objects.

Loss functions expect data with a specific layout. For example for sequence-to-vector regression networks, the loss function typically expects target vectors to be represented as a 1-by-R vector, where R is the number of responses.

Most datastores and functions output data in the layout that the loss function expects. If your target data is in a different layout than what the loss function expects, then indicate that your targets have a different layout by using the TargetDataFormats training option, specifying the data as a minibatchqueue object and specifying the TargetDataFormats property, or by specifying the target data as a formatted dlarray object. Specifying data formats is usually easier than preprocessing the target data. If you specify both the TargetDataFormats training option and theTargetDataFormats minibatchqueue property, then they must match.

For more information, see Deep Learning Data Formats.

Numeric Array or dlarray Object

For feature data that fits in memory and does not require additional processing like custom transformations, you can specify feature data as a numeric array. If you specify feature data as a numeric array, then you must also specify thetargets argument.

The layout of numeric arrays and unformatted dlarray objects depend must be consistent with the InputDataFormats training option. Most networks with feature input expect input data specified as a_N_-by-numFeatures array, where_N_ is the number of observations andnumFeatures is the number of features of the input data.

Table

For feature data that fits in memory and does not require additional processing like custom transformations, you can specify feature data as a table. If you specify feature data as a table, then you must not specify the targets argument.

To specify feature data as a table, specify a table withnumObservations rows and numFeatures+1 columns, where numObservations and numFeatures are the number of observations and channels of the input data. Thetrainnet function uses the first numFeatures columns as the input features and uses the last column as the targets.

Datastore

Datastores read batches of feature data and targets. Datastores are best suited when you have data that does not fit in memory or when you want to apply transformations to the data.

For feature and tabular data, the trainnet function supports these datastores:

Data Type Description Example Usage
TransformedDatastore Datastore that transforms batches of data read from an underlying datastore using a custom transformation function. Train neural networks with multiple inputs.Transform datastores with outputs not supported by thetrainnet function.Apply custom transformations to datastore output.
CombinedDatastore Datastore that reads from two or more underlying datastores. Train neural networks with multiple inputs.Combine predictors and targets from different data sources.
Custom mini-batch datastore Custom datastore that returns mini-batches of data. Train neural network using data in a layout that other datastores do not support.For details, see Develop Custom Mini-Batch Datastore.

To specify the targets, the datastore must output cell arrays or tables withnumInputs+numOutputs columns, wherenumInputs and numOutputs are the number of network inputs and outputs, respectively. The firstnumInputs columns, correspond to the network inputs. The last numOutput columns correspond to the network outputs. TheInputNames and OutputNames properties of the neural network specifies the order of the input and output data, respectively.

You can use other built-in datastores for training deep learning neural networks by using the transform and combine functions. These functions can convert the data read from datastores to the table or cell array format required by trainnet. For more information, seeDatastore Customization.

minibatchqueue Object (since R2024a)

For greater control over how the software processes and transforms mini-batches, you can specify data as a minibatchqueue object that returns the predictors and targets.

If you specify data as a minibatchqueue object, then thetrainnet function ignores the MiniBatchSize property of the object and uses the MiniBatchSize training option instead.

To specify the targets, the minibatchqueue must havenumInputs+numOutputs outputs, where numInputs andnumOutputs are the number of network inputs and outputs, respectively. The first numInputs outputs, correspond to the network inputs. The last numOutput outputs correspond to the network outputs. TheInputNames and OutputNames property of the neural network specifies the order of the input and output data, respectively.

Note

This argument supports complex-valued predictors and targets.

data — Generic data or combinations of data types

numeric array | dlarray object | datastore | minibatchqueue object (since R2024a)

Generic data or combinations of data types, specified as a numeric array,dlarray object, datastore, or minibatchqueue object.

If you have data that fits in memory that does not require additional processing, then specifying the input data as a numeric array is usually the easiest option. If you want to train with data stored on disk, or want to apply additional processing, then using datastores is usually the easiest option. For neural networks with multiple inputs, you must use a TransformedDatastore or CombinedDatastore object.

Tip

Neural networks expect input data with a specific layout. For example, vector-sequence classification networks typically expect a vector-sequence representations to be_t_-by-c arrays, where t and_c_ are the number of time steps and channels of sequences, respectively. Neural networks typically have an input layer that specifies the expected layout of the data.

Most datastores and functions output data in the layout that the network expects. If your data is in a different layout than what the network expects, then indicate that your data has a different layout by using the InputDataFormats training option, specifying the data as a minibatchqueue object and specifying theMiniBatchFormat property, or by specifying input data as a formatteddlarray object. Specifying data formats is usually easier than preprocessing the input data. If you specify both the InputDataFormats training option and the MiniBatchFormat minibatchqueue property, then they must match.

For neural networks that do not have input layers, you must use theInputDataFormats training option, specify the data as aminibatchqueue object and use the InputDataFormats property, or use formatted dlarray objects.

Loss functions expect data with a specific layout. For example for sequence-to-vector regression networks, the loss function typically expects target vectors to be represented as a 1-by-R vector, where R is the number of responses.

Most datastores and functions output data in the layout that the loss function expects. If your target data is in a different layout than what the loss function expects, then indicate that your targets have a different layout by using the TargetDataFormats training option, specifying the data as a minibatchqueue object and specifying the TargetDataFormats property, or by specifying the target data as a formatted dlarray object. Specifying data formats is usually easier than preprocessing the target data. If you specify both the TargetDataFormats training option and theTargetDataFormats minibatchqueue property, then they must match.

For more information, see Deep Learning Data Formats.

Numeric or dlarray Objects

For data that fits in memory and does not require additional processing like custom transformations, you can specify feature data as a numeric array. If you specify feature data as a numeric array, then you must also specify thetargets argument.

For a neural network with an inputLayer object, the expected layout of input data is a given by the InputFormat property of the layer.

For data in a different layout, indicate that your data has a different layout by using the InputDataFormats training option or use a formatteddlarray object. For more information, see Deep Learning Data Formats.

Datastores

Datastores read batches of data and targets. Datastores are best suited when you have data that does not fit in memory or when you want to apply transformations to the data.

Generic data or combinations of data types, the trainnet function supports these datastores:

Data Type Description Example Usage
TransformedDatastore Datastore that transforms batches of data read from an underlying datastore using a custom transformation function. Train neural networks with multiple inputs.Transform outputs of datastores not supported bytrainnet to the have the required format.Apply custom transformations to datastore output.
CombinedDatastore Datastore that reads from two or more underlying datastores. Train neural networks with multiple inputs.Combine predictors and targets from different data sources.
Custom mini-batch datastore Custom datastore that returns mini-batches of data. Train neural network using data in a format that other datastores do not support.For details, see Develop Custom Mini-Batch Datastore.

To specify the targets, the datastore must output cell arrays or tables withnumInputs+numOutputs columns, wherenumInputs and numOutputs are the number of network inputs and outputs, respectively. The firstnumInputs columns, correspond to the network inputs. The last numOutput columns correspond to the network outputs. TheInputNames and OutputNames properties of the neural network specifies the order of the input and output data, respectively.

You can use other built-in datastores by using the transform andcombine functions. These functions can convert the data read from datastores to the table or cell array format required by trainnet. For more information, see Datastore Customization.

minibatchqueue Object (since R2024a)

For greater control over how the software processes and transforms mini-batches, you can specify data as a minibatchqueue object that returns the predictors and targets.

If you specify data as a minibatchqueue object, then thetrainnet function ignores the MiniBatchSize property of the object and uses the MiniBatchSize training option instead.

To specify the targets, the minibatchqueue must havenumInputs+numOutputs outputs, where numInputs andnumOutputs are the number of network inputs and outputs, respectively. The first numInputs outputs, correspond to the network inputs. The last numOutput outputs correspond to the network outputs. TheInputNames and OutputNames property of the neural network specifies the order of the input and output data, respectively.

Note

This argument supports complex-valued predictors and targets.

targets — Training targets

categorical array | numeric array | cell array of sequences

Training targets, specified as a categorical array, numeric array, or a cell array of sequences.

To specify targets for networks with multiple outputs, specify the targets using theimages,sequences,features, ordata arguments.

Tip

Loss functions expect data with a specific layout. For example for sequence-to-vector regression networks, the loss function typically expects target vectors to be represented as a 1-by-R vector, where R is the number of responses.

Most datastores and functions output data in the layout that the loss function expects. If your target data is in a different layout than what the loss function expects, then indicate that your targets have a different layout by using the TargetDataFormats training option, specifying the data as a minibatchqueue object and specifying the TargetDataFormats property, or by specifying the target data as a formatted dlarray object. Specifying data formats is usually easier than preprocessing the target data. If you specify both the TargetDataFormats training option and theTargetDataFormats minibatchqueue property, then they must match.

For more information, see Deep Learning Data Formats.

The expected layout of the targets depends on the loss function and the type of task. The targets listed here are only a subset. The loss functions may support additional targets with different layouts such as targets with additional dimensions. For custom loss functions, the software uses the format information of the network output data to determine the type of target data and applies the corresponding layout in this table.

Loss Function Target Target Layout
"crossentropy" Categorical labels N_-by-1 categorical vector of labels, where_N is the number of observations.
Sequences of categorical labels _t_-by-N categorical array, where t and N are the numbers of time steps and observations, respectively.N_-by-1 cell array of sequences, where_N is the number of observations. The sequences are _t_-by-1 categorical vectors. The sequences can have different lengths.
"index-crossentropy" Categorical labels N_-by-1 categorical vector of labels, where_N is the number of observations.
Class indices N_-by-1 numeric vector of class indices, where_N is the number of observations.
Sequences of categorical labels _t_-by-N categorical array, where t and N are the numbers of time steps and observations, respectively.N_-by-1 cell array of sequences, where_N is the number of observations. The sequences are _t_-by-1 categorical vectors. The sequences can have different lengths.
Sequences of class indices _t_-by-N matrix of class indices, where t and N are the numbers of time steps and observations, respectively.N_-by-1 cell array of sequences, where_N is the number of observations. The sequences are _t_-by-1 numeric vectors of class indices. The sequences can have different lengths.
"binary-crossentropy" Binary labels (single label) _N_-by-1 vector, where N is the number of observations.
Binary labels (multilabel) N_-by-c matrix, where_N and c are the numbers of observations and classes, respectively.
"mse""mean-squared-error""l2loss""mae""mean-absolute-error""l1loss""huber" Numeric scalars _N_-by-1 vector, where N is the number of observations.
Numeric vectors N_-by-R matrix, where_N is the number of observations and_R_ is the number of responses.
2-D images _h_-by-_w_-by-c_-by-N numeric array, where h, w, and_c are the height, width, and number of channels of the images, respectively, and N is the number of images.
3-D images _h_-by-_w_-by-_d_-by-c_-by-N numeric array, where h, w,d, and c are the height, width, depth, and number of channels of the images, respectively, and_N is the number of images.
Numeric sequences of scalars t_-by-1-by-N array, where_t and N are the numbers of time steps and sequences, respectively.N_-by-1 cell array of sequences, where_N is the number of sequences. The sequences are_t_-by-1 vectors, where t is the number of time steps. The sequences can have different lengths.
Numeric sequences of vectors t_-by-c_-by-N array, where t, c, and_N are the numbers of time steps, channels, and sequences, respectively.N_-by-1 cell array of sequences, where_N is the number of sequences. The sequences are_t_-by-c matrices, where_t and c are the numbers of time steps and channels of the sequences, respectively. The sequences can have different lengths.
Sequences of 1-D images _h_-by-_c_-by-N_-by-t array, where h, c, and_t are the height, number of channels, and number of time steps of the sequences, respectively, and N is the number of sequences.N_-by-1 cell array of sequences, where_N is the number of sequences. The sequences are_h_-by-c_-by-t arrays, where h, t, and_c are the height, number of time steps, and number of channels of the sequences, respectively. The sequences can have different lengths.
Sequences of 2-D images _h_-by-_w_-by-_c_-by-_N_-by-t array, where h, w,c, and t are the height, width, number of channels, and number of time steps of the sequences, respectively, and N is the number of sequences.N_-by-1 cell array of sequences, where_N is the number of sequences. The sequences are_h_-by-_w_-by-_c_-by-t arrays, where h, w,t, and c are the height, width, number of time steps, and number of channels of the sequences, respectively. The sequences can have different lengths.
Sequences of 3-D images _h_-by-_w_-by-_d_-by-_c_-by-_N_-by-t array, where h, w,d, c, and t are the height, width, depth, number of channels, and number of time steps of the sequences, respectively, and N is the number of sequences.N_-by-1 cell array of sequences, where_N is the number of sequences. The sequences are_h_-by-_w_-by-_d_-by-_c_-by-t arrays, where h, w,d, t, and c are the height, width, depth, number of time steps, and number of channels of the sequences, respectively. The sequences can have different lengths.

For targets in a different layout, indicate that your targets has a different layout by using the TargetDataFormats training option or use a formatteddlarray object. For more information, see Deep Learning Data Formats.

Training Details

net — Neural network architecture

dlnetwork object | layer array

Neural network architecture, specified as a dlnetwork object or a layer array.

For a list of built-in neural network layers, see List of Deep Learning Layers.

lossFcn — Loss function

"crossentropy" | "index-crossentropy" (since R2024b) | "binary-crossentropy" | "mse" | "mean-squared-error" | "l2loss" | "mae" | "mean-absolute-error" | "l1loss" | "huber" | function handle | deep.DifferentiableFunction object (since R2024a)

Loss function to use for training, specified as one of these values:

Tip

For weighted cross-entropy, use the function handle@(Y,T)crossentropy(Y,T,weights).

For more information about defining a custom function, see Define Custom Deep Learning Operations.

options — Training options

TrainingOptionsSGDM | TrainingOptionsRMSProp | TrainingOptionsADAM | TrainingOptionsLBFGS | TrainingOptionsLM

Training options, specified as a TrainingOptionsSGDM,TrainingOptionsRMSProp, TrainingOptionsADAM,TrainingOptionsLBFGS, or TrainingOptionsLM object returned by the trainingOptions function.

Output Arguments

collapse all

netTrained — Trained network

dlnetwork object

Trained network, returned as a dlnetwork object.

info — Training information

TrainingInfo object

Training information, returned as a TrainingInfo object with these properties:

You can also use info to open and close the training progress plot using the show andclose functions.

More About

collapse all

Floating-Point Arithmetic

By default, the software performs computations using single-precision, floating-point arithmetic to train a neural network using the trainnet function. The trainnet function returns a network with single-precision learnables and state parameters.

When you use prediction or validation functions with a dlnetwork object with single-precision learnable and state parameters, the software performs the computations using single-precision, floating-point arithmetic.

Reproducibility

To provide the best performance, deep learning using a GPU in MATLAB® is not guaranteed to be deterministic. Depending on your network architecture, under some conditions you might get different results when using a GPU to train two identical networks or make two predictions using the same network and data. If you require determinism when performing deep learning operations using a GPU, use the deep.gpu.deterministicAlgorithms function (since R2024b).

If you use the rng function to set the same random number generator and seed, then training using a CPU is reproducible unless:

Tips

Algorithms

collapse all

Datastore Customization

Most datastores output data in the layout that neural networks expect. If you create your own datastore, or apply custom transformations to datastores, then you must ensure that the datastore outputs data in the supported layout.

There are two main aspects:

Structure of Batches

When you use a datastore for training a neural network, the structure of the datastore output depends on the neural network architecture.

Neural Network Architecture Datastore Output Example Cell Array Output Example Table Output
Single input layer and single output Table or cell array with two columns.The first and second columns specify the predictors and targets, respectively.Table elements must be scalars, row vectors, or 1-by-1 cell arrays containing a numeric array.Custom mini-batch datastores must output tables. Cell array for neural network with one input and one output:data = read(ds)data = 4×2 cell array {224×224×3 double} {[2]} {224×224×3 double} {[7]} {224×224×3 double} {[9]} {224×224×3 double} {[9]} Table for neural network with one input and one output:data = read(ds)data = 4×2 table Predictors Response __________________ ________ {224×224×3 double} 2 {224×224×3 double} 7 {224×224×3 double} 9 {224×224×3 double} 9
Multiple input layers or multiple outputs Cell array with (numInputs +numOutputs) columns, wherenumInputs is the number of neural network inputs andnumOutputs is the number of neural network outputs.The first numInputs columns specify the predictors for each input and the last numOutputs columns specify the targets.The order of inputs and outputs are given by the InputNames andOutputNames properties of the neural network respectively. Cell array for neural network with two inputs and two outputs.data = read(ds)data = 4×4 cell array {224×224×3 double} {128×128×3 double} {[2]} {[-42]} {224×224×3 double} {128×128×3 double} {[2]} {[-15]} {224×224×3 double} {128×128×3 double} {[9]} {[-24]} {224×224×3 double} {128×128×3 double} {[9]} {[-44]} Not supported

The datastore must return data in a table or cell array. Custom mini-batch datastores must output tables.

Layout of Predictors and Targets

Neural networks and loss functions expect input data with a specific layout. For example vector-sequence classification networks typically expect a sequence to be represented as a t_-by-c numeric array, where_t and c are the number of time steps and channels of sequences, respectively. Neural networks typically have an input layer that specifies the expected layout of the data.

Most datastores and functions output data in the layout that the networks and loss functions expect. If your data is in a different layout than what the network or loss function expects, then indicate that your data has a different layout by using theInputDataFormats and TargetDataFormats training options or by specifying the data as a formatted dlarray objects. Adjusting the InputDataFormats andTargetDataFormats training options is usually easier than preprocessing the input data.

For neural networks that do not have input layers, you must use theInputDataFormats training option or use formatteddlarray objects.

For more information, see Deep Learning Data Formats.

Most networks expect these data layouts of predictors:

Image Input

Data Predictor Layout
2-D images _h_-by-w_-by-c numeric array, where h, w, and_c are the height, width, and number of channels of the images, respectively.
3-D images _h_-by-_w_-by-_d_-by-c numeric array, where h, w,d, and c are the height, width, depth, and number of channels of the images, respectively.

Sequence Input

Data Predictor Layout
Vector sequence s_-by-c matrix, where_s is the sequence length and c is the number of features of the sequence.
1-D image sequence _h_-by-c_-by-s array, where h and c correspond to the height and number of channels of the image, respectively, and_s is the sequence length.Each sequence in the batch must have the same sequence length.
2-D image sequence _h_-by-_w_-by-c_-by-s array, where h, w, and_c correspond to the height, width, and number of channels of the image, respectively, and s is the sequence length.Each sequence in the batch must have the same sequence length.
3-D image sequence _h_-by-_w_-by-_d_-by-c_-by-s array, where h, w,d, and c correspond to the height, width, depth, and number of channels of the image, respectively, and_s is the sequence length.Each sequence in the batch must have the same sequence length.

Feature Input

Data Predictor Layout
Features _c_-by-1 column vectors, where c is the number of features.

Most loss functions expect these data layouts for targets:

Target Target Layout
Categorical labels Categorical scalar.
Sequences of categorical labels _t_-by-1 categorical vector, where t is the number of time steps.
Binary labels (single label) Numeric scalar
Binary labels (multilabel) 1-by-c vector, where c is the numbers of classes, respectively.
Numeric scalars Numeric scalar
Numeric vectors 1-by-R vector, where R is the number of responses.
2-D images _h_-by-_w_-by-c numeric array, where h, w, and c are the height, width, and number of channels of the images, respectively.
3-D images _h_-by-_w_-by-_d_-by-c numeric array, where h, w, d, and c are the height, width, depth, and number of channels of the images, respectively.
Numeric sequences of scalars _t_-by-1 vector, where t is the numbers of time steps.
Numeric sequences of vectors _t_-by-c array, where t, and c are the numbers of time steps and channels, respectively.
Sequences of 1-D images h_-by-c_-by-t array, where_h, c, and_t are the height, number of channels, and number of time steps of the sequences, respectively.
Sequences of 2-D images _h_-by-_w_-by-c_-by-t array, where h,w, c, and_t are the height, width, number of channels, and number of time steps of the sequences, respectively.
Sequences of 3-D images _h_-by-_w_-by-_d_-by-_c_-by-t array, where h,w, d,c, and t are the height, width, depth, number of channels, and number of time steps of the sequences, respectively.

For more information, see Deep Learning Data Formats.

Extended Capabilities

Version History

Introduced in R2023b

expand all

R2024b: Train using index cross-entropy loss

Index cross-entropy loss, also known as sparse cross-entropy loss, is a more memory and computationally efficient alternative to the standard cross-entropy loss algorithm. Unlike the "crossentropy" loss function, which requires converting categorical targets to one-hot encoded vectors, the"index-crossentropy" function operates on the integer values of the categorical targets directly.

Using index cross-entropy loss is well suited for predictions over many classes, where one-hot encoded data presents unnecessary memory overheads.

To specify index cross-entropy loss, specify the lossFcn argument as "index-crossentropy".

The trainnet function has these advantages and is recommended over the trainNetwork function:

R2024a: Specify data as minibatchqueue object

Specify in-memory feature data as a minibatchqueue object.

R2024a: Specify feature data as table

Specify in-memory feature data as a table using the features argument.

R2024a: Specify loss function as deep.DifferentiableFunction object

Specify the loss function as deep.DifferentiableFunction object.