Main Content

mapeMetric

Deep learning mean absolute percentage error metric

Since R2024b

    Description

    Use a MAPEMetric object to track the mean absolute percentage error (MAPE) when you train or test a deep neural network.

    To specify which metrics to use during training, specify the Metrics option of the trainingOptions function. You can use this option only when you train a network using the trainnet function.

    To plot the metrics during training, in the training options, specify Plots as "training-progress". If you specify the ValidationData training option, then the software also plots and records the metric values for the validation data. To output the metric values to the Command Window during training, in the training options, set Verbose to true.

    You can also access the metrics after training using the TrainingHistory and ValidationHistory fields from the second output of the trainnet function.

    To specify which metrics to use when you test a neural network, use the metrics argument of the testnet function.

    Creation

    Description

    metric = mapeMetric creates a MAPEMetric object. You can then specify metric as the Metrics name-value argument in the trainingOptions function or the metrics argument of the testnet function. With no additional options specified, this syntax is equivalent to specifying the metric as "mape".

    example

    metric = mapeMetric(PropertyName=Value) sets the Name, NetworkOutput, and NormalizationFactor properties using name-value arguments.

    Properties

    expand all

    Metric name, specified as a string scalar or character vector. The metric name appears in the training plot, the verbose output, the training information that you can access as the second output of the trainnet function, and table output of the testnet function.

    Data Types: char | string

    This property is read-only.

    Name of the layer to apply the metric to, specified as [], a string scalar, or a character vector. When the value is [], the software passes all of the network outputs to the metric.

    Note

    You can apply the built-in metric to only a single output. If you have a network with multiple outputs, then you must specify the NetworkOutput name-value argument. To apply built-in metrics to multiple outputs, you must create a metric object for each output.

    Data Types: char | string

    This property is read-only.

    Divisor for normalizing the metric sum, specified as one of these values:

    • "batch-size" — Divide the metric sum by the number of elements in the targets.

    • "all-elements" — Divide the metric sum by the number of observations.

    Data Types: char | string

    This property is read-only.

    Flag to maximize metric, specified as 0 (false) if the optimal value for the metric occurs when the metric is minimized.

    For this metric, the Maximize value is always set to 0 (false).

    Object Functions

    trainingOptionsOptions for training deep learning neural network
    trainnetTrain deep learning neural network
    testnetTest deep learning neural network

    Examples

    collapse all

    Plot and record the training and validation MAPE when you train a deep neural network.

    Load the training and test data from the DigitsDataTrain and DigitsDataTest MAT files, respectively. To access this data, open the example as a live script. The data set contains synthetic images of handwritten digits and the corresponding angles (in degrees) by which each image is rotated. The range The anglesTrain and anglesTest variables are the rotation angles in degrees.

    load DigitsDataTrain.mat
    load DigitsDataTest.mat

    You can train a deep learning network to predict the rotation angle of the digit.

    Create an image regression network.

    layers = [
        imageInputLayer([28 28 1])
        convolution2dLayer(3,8,Padding="same")
        batchNormalizationLayer
        reluLayer
        averagePooling2dLayer(2,'Stride',2)
        convolution2dLayer(3,16,Padding="same")
        batchNormalizationLayer
        reluLayer
        averagePooling2dLayer(2,'Stride',2)
        convolution2dLayer(3,32,Padding="same")
        batchNormalizationLayer
        reluLayer
        convolution2dLayer(3,32,Padding="same")
        batchNormalizationLayer
        reluLayer
        dropoutLayer(0.2)
        fullyConnectedLayer(1)];

    Create a MAPEMetric object and set the NormalizationFactor property to "batch-size". You can use this object to record and plot the training and validation MAPE.

    metric = mapeMetric(NormalizationFactor="batch-size")
    metric = 
      MAPEMetric with properties:
    
                       Name: "MAPE"
        NormalizationFactor: "batch-size"
              NetworkOutput: []
                   Maximize: 0
    
    

    The rotation value for each image is between -45 and 45 degrees. Because the MAPE metric is sensitive to values close to zero, shift the angle values by 360 degrees.

    anglesTrain = anglesTrain + 360; 
    anglesTest = anglesTest + 360; 

    Specify the MAPE metric in the training options. To plot the MAPE during training, set Plots to "training-progress". To output the values during training, set Verbose to true.

    options = trainingOptions("adam", ...
        MaxEpochs=10, ...
        Metrics=metric, ...
        ValidationData={XTest,anglesTest}, ...
        ValidationFrequency=50, ...
        Plots="training-progress", ...
        Verbose=true);

    Train the network using the trainnet function.

    [net,info] = trainnet(XTrain,anglesTrain,layers,"mse",options);
        Iteration    Epoch    TimeElapsed    LearnRate    TrainingLoss    ValidationLoss    TrainingMAPE    ValidationMAPE
        _________    _____    ___________    _________    ____________    ______________    ____________    ______________
                0        0       00:00:11        0.001                        1.3056e+05                           0.99992
                1        1       00:00:12        0.001      1.3106e+05                            0.9989                  
               50        2       00:00:32        0.001           94497             98812         0.84474           0.86858
              100        3       00:00:34        0.001           58344             63123         0.66738           0.69259
              150        4       00:00:36        0.001           29241             30732         0.47611           0.48048
              200        6       00:00:38        0.001           13591             11977         0.31457           0.29707
              250        7       00:00:40        0.001          3849.1            3344.3         0.16554           0.15275
              300        8       00:00:42        0.001          1017.7            956.85        0.075095          0.077081
              350        9       00:00:44        0.001          293.17            289.75        0.037761          0.037379
              390       10       00:00:45        0.001          234.27            813.19         0.03401          0.070744
    Training stopped: Max epochs completed
    

    Access the loss and MAPE values for the validation data.

    info.ValidationHistory
    ans=9×3 table
        Iteration       Loss         MAPE  
        _________    __________    ________
    
             0       1.3056e+05     0.99992
            50            98812     0.86858
           100            63123     0.69259
           150            30732     0.48048
           200            11977     0.29707
           250           3344.3     0.15275
           300           956.85    0.077081
           350           289.75    0.037379
           390           813.19    0.070744
    
    

    More About

    expand all

    Version History

    Introduced in R2024b