Main Content

fitcnet

Train neural network classification model

Since R2021a

Description

Use fitcnet to train a feedforward, fully connected neural network for classification. The first fully connected layer of the neural network has a connection from the network input (predictor data), and each subsequent layer has a connection from the previous layer. Each fully connected layer multiplies the input by a weight matrix and then adds a bias vector. An activation function follows each fully connected layer. The final fully connected layer and the subsequent softmax activation function produce the network's output, namely classification scores (posterior probabilities) and predicted labels. For more information, see Neural Network Structure.

example

Mdl = fitcnet(Tbl,ResponseVarName) returns a neural network classification model Mdl trained using the predictors in the table Tbl and the class labels in the ResponseVarName table variable.

Mdl = fitcnet(Tbl,formula) returns a neural network classification model trained using the sample data in the table Tbl. The input argument formula is an explanatory model of the response and a subset of the predictor variables in Tbl used to fit Mdl.

Mdl = fitcnet(Tbl,Y) returns a neural network classification model using the predictor variables in the table Tbl and the class labels in vector Y.

example

Mdl = fitcnet(X,Y) returns a neural network classification model trained using the predictors in the matrix X and the class labels in vector Y.

example

Mdl = fitcnet(___,Name,Value) specifies options using one or more name-value arguments in addition to any of the input argument combinations in previous syntaxes. For example, you can adjust the number of outputs and the activation functions for the fully connected layers by specifying the LayerSizes and Activations name-value arguments.

Examples

collapse all

Train a neural network classifier, and assess the performance of the classifier on a test set.

Read the sample file CreditRating_Historical.dat into a table. The predictor data consists of financial ratios and industry sector information for a list of corporate customers. The response variable consists of credit ratings assigned by a rating agency. Preview the first few rows of the data set.

creditrating = readtable("CreditRating_Historical.dat");
head(creditrating)
     ID      WC_TA     RE_TA     EBIT_TA    MVE_BVTD    S_TA     Industry    Rating 
    _____    ______    ______    _______    ________    _____    ________    _______

    62394     0.013     0.104     0.036      0.447      0.142        3       {'BB' }
    48608     0.232     0.335     0.062      1.969      0.281        8       {'A'  }
    42444     0.311     0.367     0.074      1.935      0.366        1       {'A'  }
    48631     0.194     0.263     0.062      1.017      0.228        4       {'BBB'}
    43768     0.121     0.413     0.057      3.647      0.466       12       {'AAA'}
    39255    -0.117    -0.799      0.01      0.179      0.082        4       {'CCC'}
    62236     0.087     0.158     0.049      0.816      0.324        2       {'BBB'}
    39354     0.005     0.181     0.034      2.597      0.388        7       {'AA' }

Because each value in the ID variable is a unique customer ID, that is, length(unique(creditrating.ID)) is equal to the number of observations in creditrating, the ID variable is a poor predictor. Remove the ID variable from the table, and convert the Industry variable to a categorical variable.

creditrating = removevars(creditrating,"ID");
creditrating.Industry = categorical(creditrating.Industry);

Convert the Rating response variable to an ordinal categorical variable.

creditrating.Rating = categorical(creditrating.Rating, ...
    ["AAA","AA","A","BBB","BB","B","CCC"],"Ordinal",true);

Partition the data into training and test sets. Use approximately 80% of the observations to train a neural network model, and 20% of the observations to test the performance of the trained model on new data. Use cvpartition to partition the data.

rng("default") % For reproducibility of the partition
c = cvpartition(creditrating.Rating,"Holdout",0.20);
trainingIndices = training(c); % Indices for the training set
testIndices = test(c); % Indices for the test set
creditTrain = creditrating(trainingIndices,:);
creditTest = creditrating(testIndices,:);

Train a neural network classifier by passing the training data creditTrain to the fitcnet function.

Mdl = fitcnet(creditTrain,"Rating")
Mdl = 
  ClassificationNeuralNetwork
           PredictorNames: {'WC_TA'  'RE_TA'  'EBIT_TA'  'MVE_BVTD'  'S_TA'  'Industry'}
             ResponseName: 'Rating'
    CategoricalPredictors: 6
               ClassNames: [AAA    AA    A    BBB    BB    B    CCC]
           ScoreTransform: 'none'
          NumObservations: 3146
               LayerSizes: 10
              Activations: 'relu'
    OutputLayerActivation: 'softmax'
                   Solver: 'LBFGS'
          ConvergenceInfo: [1x1 struct]
          TrainingHistory: [1000x7 table]


Mdl is a trained ClassificationNeuralNetwork classifier. You can use dot notation to access the properties of Mdl. For example, you can specify Mdl.TrainingHistory to get more information about the training history of the neural network model.

Evaluate the performance of the classifier on the test set by computing the test set classification error. Visualize the results by using a confusion matrix.

testAccuracy = 1 - loss(Mdl,creditTest,"Rating", ...
    "LossFun","classiferror")
testAccuracy = 0.8053
confusionchart(creditTest.Rating,predict(Mdl,creditTest))

Specify the structure of a neural network classifier, including the size of the fully connected layers.

Load the ionosphere data set, which includes radar signal data. X contains the predictor data, and Y is the response variable, whose values represent either good ("g") or bad ("b") radar signals.

load ionosphere

Separate the data into training data (XTrain and YTrain) and test data (XTest and YTest) by using a stratified holdout partition. Reserve approximately 30% of the observations for testing, and use the rest of the observations for training.

rng("default") % For reproducibility of the partition
cvp = cvpartition(Y,"Holdout",0.3);
XTrain = X(training(cvp),:);
YTrain = Y(training(cvp));
XTest = X(test(cvp),:);
YTest = Y(test(cvp));

Train a neural network classifier. Specify to have 35 outputs in the first fully connected layer and 20 outputs in the second fully connected layer. By default, both layers use a rectified linear unit (ReLU) activation function. You can change the activation functions for the fully connected layers by using the Activations name-value argument.

Mdl = fitcnet(XTrain,YTrain, ...
    "LayerSizes",[35 20])
Mdl = 
  ClassificationNeuralNetwork
             ResponseName: 'Y'
    CategoricalPredictors: []
               ClassNames: {'b'  'g'}
           ScoreTransform: 'none'
          NumObservations: 246
               LayerSizes: [35 20]
              Activations: 'relu'
    OutputLayerActivation: 'softmax'
                   Solver: 'LBFGS'
          ConvergenceInfo: [1x1 struct]
          TrainingHistory: [47x7 table]


Access the weights and biases for the fully connected layers of the trained classifier by using the LayerWeights and LayerBiases properties of Mdl. The first two elements of each property correspond to the values for the first two fully connected layers, and the third element corresponds to the values for the final fully connected layer with a softmax activation function for classification. For example, display the weights and biases for the second fully connected layer.

Mdl.LayerWeights{2}
ans = 20×35

    0.0481    0.2501   -0.1535   -0.0934    0.0760   -0.0579   -0.2465    1.0411    0.3712   -1.2007    1.1162    0.4296    0.4045    0.5005    0.8839    0.4624   -0.3154    0.3454   -0.0487    0.2648    0.0732    0.5773    0.4286    0.0881    0.9468    0.2981    0.5534    1.0518   -0.0224    0.6894    0.5527    0.7045   -0.6124    0.2145   -0.0790
   -0.9489   -1.8343    0.5510   -0.5751   -0.8726    0.8815    0.0203   -1.6379    2.0315    1.7599   -1.4153   -1.4335   -1.1638   -0.1715    1.1439   -0.7661    1.1230   -1.1982   -0.5409   -0.5821   -0.0627   -0.7038   -0.0817   -1.5773   -1.4671    0.2053   -0.7931   -1.6201   -0.1737   -0.7762   -0.3063   -0.8771    1.5134   -0.4611   -0.0649
   -0.1910    0.0246   -0.3511    0.0097    0.3160   -0.0693    0.2270   -0.0783   -0.1626   -0.3478    0.2765    0.4179    0.0727   -0.0314   -0.1798   -0.0583    0.1375   -0.1876    0.2518    0.2137    0.1497    0.0395    0.2859   -0.0905    0.4325   -0.2012    0.0388   -0.1441   -0.1431   -0.0249   -0.2200    0.0860   -0.2076    0.0132    0.1737
   -0.0415   -0.0059   -0.0753   -0.1477   -0.1621   -0.1762    0.2164    0.1710   -0.0610   -0.1402    0.1452    0.2890    0.2872   -0.2616   -0.4204   -0.2831   -0.1901    0.0036    0.0781   -0.0826    0.1588   -0.2782    0.2510   -0.1069   -0.2692    0.2306    0.2521    0.0306    0.2524   -0.4218    0.2478    0.2343   -0.1031    0.1037    0.1598
    1.1848    1.6142   -0.1352    0.5774    0.5491    0.0103    0.0209    0.7219   -0.8643   -0.5578    1.3595    1.5385    1.0015    0.7416   -0.4342    0.2279    0.5667    1.1589    0.7100    0.1823    0.4171    0.7051    0.0794    1.3267    1.2659    0.3197    0.3947    0.3436   -0.1415    0.6607    1.0071    0.7726   -0.2840    0.8801    0.0848
    0.2486   -0.2920   -0.0004    0.2806    0.2987   -0.2709    0.1473   -0.2580   -0.0499   -0.0755    0.2000    0.1535   -0.0285   -0.0520   -0.2523   -0.2505   -0.0437   -0.2323    0.2023    0.2061   -0.1365    0.0744    0.0344   -0.2891    0.2341   -0.1556    0.1459    0.2533   -0.0583    0.0243   -0.2949   -0.1530    0.1546   -0.0340   -0.1562
   -0.0516    0.0640    0.1824   -0.0675   -0.2065   -0.0052   -0.1682   -0.1520    0.0060    0.0450    0.0813   -0.0234    0.0657    0.3219   -0.1871    0.0658   -0.2103    0.0060   -0.2831   -0.1811   -0.0988    0.2378   -0.0761    0.1714   -0.1596   -0.0011    0.0609    0.4003    0.3687   -0.2879    0.0910    0.0604   -0.2222   -0.2735   -0.1155
   -0.6192   -0.7804   -0.0506   -0.4205   -0.2584   -0.2020   -0.0008    0.0534    1.0185   -0.0307   -0.0539   -0.2020    0.0368   -0.1847    0.0886   -0.4086   -0.4648   -0.3785    0.1542   -0.5176   -0.3207    0.1893   -0.0313   -0.5297   -0.1261   -0.2749   -0.6152   -0.5914   -0.3089    0.2432   -0.3955   -0.1711    0.1710   -0.4477    0.0718
    0.5049   -0.1362   -0.2218    0.1637   -0.1282   -0.1008    0.1445    0.4527   -0.4887    0.0503    0.1453    0.1316   -0.3311   -0.1081   -0.7699    0.4062   -0.1105   -0.0855    0.0630   -0.1469   -0.2533    0.3976    0.0418    0.5294    0.3982    0.1027   -0.0973   -0.1282    0.2491    0.0425    0.0533    0.1578   -0.8403   -0.0535   -0.0048
    1.1109   -0.0466    0.4044    0.6366    0.1863    0.5660    0.2839    0.8793   -0.5497    0.0057    0.3468    0.0980    0.3364    0.4669    0.1466    0.7883   -0.1743    0.4444    0.4535    0.1521    0.7476    0.2246    0.4473    0.2829    0.8881    0.4666    0.6334    0.3105    0.9571    0.2808    0.6483    0.1180   -0.4558    1.2486    0.2453
      ⋮

Mdl.LayerBiases{2}
ans = 20×1

    0.6147
    0.1891
   -0.2767
   -0.2977
    1.3655
    0.0347
    0.1509
   -0.4839
   -0.3960
    0.9248
      ⋮

The final fully connected layer has two outputs, one for each class in the response variable. The number of layer outputs corresponds to the first dimension of the layer weights and layer biases.

size(Mdl.LayerWeights{end})
ans = 1×2

     2    20

size(Mdl.LayerBiases{end})
ans = 1×2

     2     1

To estimate the performance of the trained classifier, compute the test set classification error for Mdl.

testError = loss(Mdl,XTest,YTest, ...
    "LossFun","classiferror")
testError = 0.0774
accuracy = 1 - testError
accuracy = 0.9226

Mdl accurately classifies approximately 92% of the observations in the test set.

At each iteration of the training process, compute the validation loss of the neural network. Stop the training process early if the validation loss reaches a reasonable minimum.

Load the patients data set. Create a table from the data set. Each row corresponds to one patient, and each column corresponds to a diagnostic variable. Use the Smoker variable as the response variable, and the rest of the variables as predictors.

load patients
tbl = table(Diastolic,Systolic,Gender,Height,Weight,Age,Smoker);

Separate the data into a training set tblTrain and a validation set tblValidation by using a stratified holdout partition. The software reserves approximately 30% of the observations for the validation data set and uses the rest of the observations for the training data set.

rng("default") % For reproducibility of the partition
c = cvpartition(tbl.Smoker,"Holdout",0.30);
trainingIndices = training(c);
validationIndices = test(c);
tblTrain = tbl(trainingIndices,:);
tblValidation = tbl(validationIndices,:);

Train a neural network classifier by using the training set. Specify the Smoker column of tblTrain as the response variable. Evaluate the model at each iteration by using the validation set. Specify to display the training information at each iteration by using the Verbose name-value argument. By default, the training process ends early if the validation cross-entropy loss is greater than or equal to the minimum validation cross-entropy loss computed so far, six times in a row. To change the number of times the validation loss is allowed to be greater than or equal to the minimum, specify the ValidationPatience name-value argument.

Mdl = fitcnet(tblTrain,"Smoker", ...
    "ValidationData",tblValidation, ...
    "Verbose",1);
|==========================================================================================|
| Iteration  | Train Loss | Gradient   | Step       | Iteration  | Validation | Validation |
|            |            |            |            | Time (sec) | Loss       | Checks     |
|==========================================================================================|
|           1|    2.602935|   26.866935|    0.262009|    0.064771|    2.793048|           0|
|           2|    1.470816|   42.594723|    0.058323|    0.014788|    1.247046|           0|
|           3|    1.299292|   25.854432|    0.034910|    0.010754|    1.507857|           1|
|           4|    0.710465|   11.629107|    0.013616|    0.007923|    0.889157|           0|
|           5|    0.647783|    2.561740|    0.005753|    0.014600|    0.766728|           0|
|           6|    0.645541|    0.681579|    0.001000|    0.002442|    0.776072|           1|
|           7|    0.639611|    1.544692|    0.007013|    0.012686|    0.776320|           2|
|           8|    0.604189|    5.045676|    0.064190|    0.008769|    0.744919|           0|
|           9|    0.565364|    5.851552|    0.068845|    0.003809|    0.694226|           0|
|          10|    0.391994|    8.377717|    0.560480|    0.002676|    0.425466|           0|
|==========================================================================================|
| Iteration  | Train Loss | Gradient   | Step       | Iteration  | Validation | Validation |
|            |            |            |            | Time (sec) | Loss       | Checks     |
|==========================================================================================|
|          11|    0.383843|    0.630246|    0.110270|    0.007764|    0.428487|           1|
|          12|    0.369289|    2.404750|    0.084395|    0.008938|    0.405728|           0|
|          13|    0.357839|    6.220679|    0.199197|    0.001401|    0.378480|           0|
|          14|    0.344974|    2.752717|    0.029013|    0.004508|    0.367279|           0|
|          15|    0.333747|    0.711398|    0.074513|    0.004838|    0.348499|           0|
|          16|    0.327763|    0.804818|    0.122178|    0.003627|    0.330237|           0|
|          17|    0.327702|    0.778169|    0.009810|    0.002725|    0.329095|           0|
|          18|    0.327277|    0.020615|    0.004377|    0.001097|    0.329141|           1|
|          19|    0.327273|    0.010018|    0.003313|    0.001677|    0.328773|           0|
|          20|    0.327268|    0.019497|    0.000805|    0.018197|    0.328831|           1|
|==========================================================================================|
| Iteration  | Train Loss | Gradient   | Step       | Iteration  | Validation | Validation |
|            |            |            |            | Time (sec) | Loss       | Checks     |
|==========================================================================================|
|          21|    0.327228|    0.113983|    0.005397|    0.006019|    0.329085|           2|
|          22|    0.327138|    0.240166|    0.012159|    0.002204|    0.329406|           3|
|          23|    0.326865|    0.428912|    0.036841|    0.001086|    0.329952|           4|
|          24|    0.325797|    0.255227|    0.139585|    0.002816|    0.331246|           5|
|          25|    0.325181|    0.758050|    0.135868|    0.004220|    0.332035|           6|
|==========================================================================================|

Create a plot that compares the training cross-entropy loss and the validation cross-entropy loss at each iteration. By default, fitcnet stores the loss information inside the TrainingHistory property of the object Mdl. You can access this information by using dot notation.

iteration = Mdl.TrainingHistory.Iteration;
trainLosses = Mdl.TrainingHistory.TrainingLoss;
valLosses = Mdl.TrainingHistory.ValidationLoss;

plot(iteration,trainLosses,iteration,valLosses)
legend(["Training","Validation"])
xlabel("Iteration")
ylabel("Cross-Entropy Loss")

Check the iteration that corresponds to the minimum validation loss. The final returned model Mdl is the model trained at this iteration.

[~,minIdx] = min(valLosses);
iteration(minIdx)
ans = 19

Assess the cross-validation loss of neural network models with different regularization strengths, and choose the regularization strength corresponding to the best performing model.

Read the sample file CreditRating_Historical.dat into a table. The predictor data consists of financial ratios and industry sector information for a list of corporate customers. The response variable consists of credit ratings assigned by a rating agency. Preview the first few rows of the data set.

creditrating = readtable("CreditRating_Historical.dat");
head(creditrating)
     ID      WC_TA     RE_TA     EBIT_TA    MVE_BVTD    S_TA     Industry    Rating 
    _____    ______    ______    _______    ________    _____    ________    _______

    62394     0.013     0.104     0.036      0.447      0.142        3       {'BB' }
    48608     0.232     0.335     0.062      1.969      0.281        8       {'A'  }
    42444     0.311     0.367     0.074      1.935      0.366        1       {'A'  }
    48631     0.194     0.263     0.062      1.017      0.228        4       {'BBB'}
    43768     0.121     0.413     0.057      3.647      0.466       12       {'AAA'}
    39255    -0.117    -0.799      0.01      0.179      0.082        4       {'CCC'}
    62236     0.087     0.158     0.049      0.816      0.324        2       {'BBB'}
    39354     0.005     0.181     0.034      2.597      0.388        7       {'AA' }

Because each value in the ID variable is a unique customer ID, that is, length(unique(creditrating.ID)) is equal to the number of observations in creditrating, the ID variable is a poor predictor. Remove the ID variable from the table, and convert the Industry variable to a categorical variable.

creditrating = removevars(creditrating,"ID");
creditrating.Industry = categorical(creditrating.Industry);

Convert the Rating response variable to an ordinal categorical variable.

creditrating.Rating = categorical(creditrating.Rating, ...
    ["AAA","AA","A","BBB","BB","B","CCC"],"Ordinal",true);

Create a cvpartition object for stratified 5-fold cross-validation. cvp partitions the data into five folds, where each fold has roughly the same proportions of different credit ratings. Set the random seed to the default value for reproducibility of the partition.

rng("default")
cvp = cvpartition(creditrating.Rating,"KFold",5);

Compute the cross-validation classification error for neural network classifiers with different regularization strengths. Try regularization strengths on the order of 1/n, where n is the number of observations. Specify to standardize the data before training the neural network models.

1/size(creditrating,1)
ans = 2.5432e-04
lambda = (0:0.5:5)*1e-4;
cvloss = zeros(length(lambda),1);

for i = 1:length(lambda)
    cvMdl = fitcnet(creditrating,"Rating","Lambda",lambda(i), ...
        "CVPartition",cvp,"Standardize",true);
    cvloss(i) = kfoldLoss(cvMdl,"LossFun","classiferror");
end

Plot the results. Find the regularization strength corresponding to the lowest cross-validation classification error.

plot(lambda,cvloss)
xlabel("Regularization Strength")
ylabel("Cross-Validation Loss")

Figure contains an axes object. The axes object with xlabel Regularization Strength, ylabel Cross-Validation Loss contains an object of type line.

[~,idx] = min(cvloss);
bestLambda = lambda(idx)
bestLambda = 5.0000e-05

Train a neural network classifier using the bestLambda regularization strength.

Mdl = fitcnet(creditrating,"Rating","Lambda",bestLambda, ...
    "Standardize",true)
Mdl = 
  ClassificationNeuralNetwork
           PredictorNames: {'WC_TA'  'RE_TA'  'EBIT_TA'  'MVE_BVTD'  'S_TA'  'Industry'}
             ResponseName: 'Rating'
    CategoricalPredictors: 6
               ClassNames: [AAA    AA    A    BBB    BB    B    CCC]
           ScoreTransform: 'none'
          NumObservations: 3932
               LayerSizes: 10
              Activations: 'relu'
    OutputLayerActivation: 'softmax'
                   Solver: 'LBFGS'
          ConvergenceInfo: [1×1 struct]
          TrainingHistory: [1000×7 table]


  Properties, Methods

Train a neural network classifier using the OptimizeHyperparameters argument to improve the resulting classifier. Using this argument causes fitcnet to minimize cross-validation loss over some problem hyperparameters using Bayesian optimization.

Read the sample file CreditRating_Historical.dat into a table. The predictor data consists of financial ratios and industry sector information for a list of corporate customers. The response variable consists of credit ratings assigned by a rating agency. Preview the first few rows of the data set.

creditrating = readtable("CreditRating_Historical.dat");
head(creditrating)
     ID      WC_TA     RE_TA     EBIT_TA    MVE_BVTD    S_TA     Industry    Rating 
    _____    ______    ______    _______    ________    _____    ________    _______

    62394     0.013     0.104     0.036      0.447      0.142        3       {'BB' }
    48608     0.232     0.335     0.062      1.969      0.281        8       {'A'  }
    42444     0.311     0.367     0.074      1.935      0.366        1       {'A'  }
    48631     0.194     0.263     0.062      1.017      0.228        4       {'BBB'}
    43768     0.121     0.413     0.057      3.647      0.466       12       {'AAA'}
    39255    -0.117    -0.799      0.01      0.179      0.082        4       {'CCC'}
    62236     0.087     0.158     0.049      0.816      0.324        2       {'BBB'}
    39354     0.005     0.181     0.034      2.597      0.388        7       {'AA' }

Because each value in the ID variable is a unique customer ID, that is, length(unique(creditrating.ID)) is equal to the number of observations in creditrating, the ID variable is a poor predictor. Remove the ID variable from the table, and convert the Industry variable to a categorical variable.

creditrating = removevars(creditrating,"ID");
creditrating.Industry = categorical(creditrating.Industry);

Convert the Rating response variable to an ordinal categorical variable.

creditrating.Rating = categorical(creditrating.Rating, ...
    ["AAA","AA","A","BBB","BB","B","CCC"],"Ordinal",true);

Partition the data into training and test sets. Use approximately 80% of the observations to train a neural network model, and 20% of the observations to test the performance of the trained model on new data. Use cvpartition to partition the data.

rng("default") % For reproducibility of the partition
c = cvpartition(creditrating.Rating,"Holdout",0.20);
trainingIndices = training(c); % Indices for the training set
testIndices = test(c); % Indices for the test set
creditTrain = creditrating(trainingIndices,:);
creditTest = creditrating(testIndices,:);

Train a neural network classifier by passing the training data creditTrain to the fitcnet function, and include the OptimizeHyperparameters argument. For reproducibility, set the AcquisitionFunctionName to "expected-improvement-plus" in a HyperparameterOptimizationOptions structure. To attempt to get a better solution, set the number of optimization steps to 100 instead of the default 30. fitcnet performs Bayesian optimization by default. To use grid search or random search, set the Optimizer field in HyperparameterOptimizationOptions.

rng("default") % For reproducibility
Mdl = fitcnet(creditTrain,"Rating","OptimizeHyperparameters","auto", ...
    "HyperparameterOptimizationOptions", ...
    struct("AcquisitionFunctionName","expected-improvement-plus", ...
    "MaxObjectiveEvaluations",100))
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|    1 | Best   |     0.55944 |     0.21329 |     0.55944 |     0.55944 |         none |         true |      0.05834 |  3                    |
|    2 | Best   |     0.21551 |      9.1007 |     0.21551 |     0.22919 |         relu |         true |   5.0811e-08 | [  1  25]             |
|    3 | Accept |     0.74189 |        0.37 |     0.21551 |     0.21565 |      sigmoid |         true |      0.57986 |  126                  |
|    4 | Accept |      0.4501 |     0.73172 |     0.21551 |     0.21574 |         tanh |        false |     0.018683 |  10                   |
|    5 | Accept |     0.74189 |     0.20404 |     0.21551 |     0.21653 |         relu |         true |       23.973 | [  6   3]             |
|    6 | Accept |     0.22409 |      13.374 |     0.21551 |     0.21555 |         relu |         true |   1.6398e-07 | [  3  17]             |
|    7 | Accept |     0.26987 |      12.622 |     0.21551 |     0.21571 |         relu |         true |    1.382e-08 |  27                   |
|    8 | Accept |     0.26192 |       33.25 |     0.21551 |     0.21586 |         relu |         true |   3.2094e-08 | [ 52   4   3]         |
|    9 | Accept |     0.30706 |      20.077 |     0.21551 |     0.21585 |         tanh |        false |   8.0567e-09 | [ 22  36]             |
|   10 | Accept |     0.21678 |      35.983 |     0.21551 |     0.21582 |         relu |        false |   5.5071e-09 | [  1 262]             |
|   11 | Accept |     0.22537 |       10.54 |     0.21551 |     0.21578 |         relu |        false |   3.3721e-06 | [ 14   2]             |
|   12 | Accept |     0.35029 |      39.297 |     0.21551 |     0.21564 |         relu |        false |   4.6001e-08 | [299   1]             |
|   13 | Accept |     0.32867 |      27.557 |     0.21551 |     0.21564 |         relu |        false |    0.0044901 | [  1 234]             |
|   14 | Best   |     0.21297 |      9.1901 |     0.21297 |     0.21289 |         relu |        false |   9.0367e-07 | [  1  28]             |
|   15 | Accept |     0.44469 |        22.2 |     0.21297 |     0.21292 |         relu |        false |   1.1934e-05 | [  1   1 258]         |
|   16 | Accept |     0.21488 |      19.999 |     0.21297 |     0.21292 |         relu |         true |   9.2814e-08 | [  1  52  19]         |
|   17 | Accept |     0.30356 |      87.716 |     0.21297 |     0.21293 |         tanh |        false |   4.2642e-09 | [ 50 252 272]         |
|   18 | Accept |     0.23172 |      35.422 |     0.21297 |     0.21294 |         relu |         true |   3.2243e-09 | [  4   5 262]         |
|   19 | Accept |     0.21647 |      23.035 |     0.21297 |     0.21294 |         tanh |         true |   3.5745e-09 | [  1  91  14]         |
|   20 | Accept |     0.28862 |      149.47 |     0.21297 |     0.21293 |         tanh |         true |   1.3785e-07 | [287 247 236]         |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   21 | Accept |     0.21519 |      7.4726 |     0.21297 |     0.21294 |         tanh |         true |   2.6095e-06 | [  1   7]             |
|   22 | Accept |     0.31977 |      23.153 |     0.21297 |     0.21295 |         tanh |         true |   5.7585e-09 | [ 18  59]             |
|   23 | Accept |     0.21488 |      36.265 |     0.21297 |     0.21295 |         tanh |         true |   6.4231e-06 | [  1   2 276]         |
|   24 | Accept |     0.74189 |     0.10388 |     0.21297 |     0.21296 |         tanh |         true |       0.2844 | [  1   1]             |
|   25 | Accept |     0.21456 |      22.882 |     0.21297 |     0.21296 |         tanh |         true |   2.3309e-07 | [  1   9  91]         |
|   26 | Accept |     0.25016 |       66.29 |     0.21297 |     0.21296 |      sigmoid |        false |   3.2664e-09 | [113  55 142]         |
|   27 | Accept |     0.21424 |      9.3908 |     0.21297 |     0.21296 |      sigmoid |        false |   1.4102e-06 | [  1  19]             |
|   28 | Accept |      0.2314 |      83.118 |     0.21297 |     0.21301 |      sigmoid |        false |   3.7567e-06 | [240  47 271]         |
|   29 | Accept |     0.21996 |      13.988 |     0.21297 |     0.21308 |         relu |        false |   8.5897e-08 | [  1  35  31]         |
|   30 | Accept |     0.27273 |      40.495 |     0.21297 |     0.21297 |         relu |        false |   2.4362e-06 | [ 20 258]             |
|   31 | Accept |     0.24666 |      40.795 |     0.21297 |     0.20705 |      sigmoid |        false |   2.1824e-07 |  296                  |
|   32 | Accept |     0.74189 |     0.57341 |     0.21297 |     0.21299 |      sigmoid |        false |     0.001915 | [  1  34]             |
|   33 | Accept |     0.21678 |      44.545 |     0.21297 |     0.21329 |      sigmoid |        false |   1.5195e-07 | [  2  26 249]         |
|   34 | Accept |     0.74189 |     0.33765 |     0.21297 |     0.21301 |         relu |        false |       4.7007 | [243   8]             |
|   35 | Accept |     0.24348 |      8.9164 |     0.21297 |     0.21307 |         relu |        false |   9.0149e-07 |  26                   |
|   36 | Accept |     0.22473 |      4.7917 |     0.21297 |      0.2134 |         relu |        false |   7.9991e-08 |  1                    |
|   37 | Accept |     0.21424 |      9.6882 |     0.21297 |     0.21299 |         relu |         true |   1.3089e-05 | [  1  10   7]         |
|   38 | Accept |     0.21837 |      53.903 |     0.21297 |     0.21597 |         relu |        false |   3.2625e-09 | [  2  39 274]         |
|   39 | Accept |     0.29688 |      44.476 |     0.21297 |     0.21299 |         relu |         true |   6.1616e-06 | [265  20]             |
|   40 | Accept |     0.21805 |      30.673 |     0.21297 |     0.21157 |         tanh |         true |   4.0008e-09 | [  2   1 196]         |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   41 | Accept |     0.22187 |      41.121 |     0.21297 |     0.21539 |         relu |         true |   1.4839e-06 | [  2   7 276]         |
|   42 | Accept |     0.29847 |      43.535 |     0.21297 |     0.21214 |         tanh |         true |   7.7422e-06 |  282                  |
|   43 | Accept |     0.22282 |      66.822 |     0.21297 |       0.213 |         tanh |        false |   1.9589e-06 | [255   2 193]         |
|   44 | Accept |     0.21519 |      32.912 |     0.21297 |     0.21522 |      sigmoid |        false |   1.3998e-07 | [  1 271]             |
|   45 | Accept |     0.21901 |       5.021 |     0.21297 |     0.21204 |         tanh |        false |   5.3917e-06 |  1                    |
|   46 | Accept |     0.21519 |      30.912 |     0.21297 |     0.21193 |         tanh |        false |   4.1925e-07 | [  1   2 189]         |
|   47 | Accept |     0.21456 |      58.926 |     0.21297 |     0.21506 |         tanh |        false |    8.115e-06 | [  1  49 280]         |
|   48 | Accept |     0.46154 |       5.002 |     0.21297 |     0.21531 |         relu |         true |    0.0004267 | [  1   2   2]         |
|   49 | Accept |     0.21424 |      5.1521 |     0.21297 |     0.21525 |      sigmoid |        false |   3.1855e-09 |  1                    |
|   50 | Accept |     0.25079 |      50.299 |     0.21297 |     0.21527 |         tanh |        false |   4.3831e-05 | [278  17   4]         |
|   51 | Accept |     0.21647 |      8.5723 |     0.21297 |     0.21354 |         none |        false |   3.6998e-09 | [  2   3   4]         |
|   52 | Accept |     0.21519 |       51.63 |     0.21297 |     0.21343 |         none |        false |   5.1994e-07 | [  4  81 236]         |
|   53 | Accept |     0.22092 |      32.834 |     0.21297 |     0.21343 |         none |        false |   5.1377e-08 |  292                  |
|   54 | Accept |     0.21647 |      4.5964 |     0.21297 |     0.21339 |         none |        false |     0.000236 | [  1 106]             |
|   55 | Accept |     0.74189 |     0.64963 |     0.21297 |     0.21518 |         none |        false |     0.078564 | [ 63  26 288]         |
|   56 | Accept |     0.21551 |      36.402 |     0.21297 |     0.21338 |         none |        false |   2.0877e-05 | [  1 119  76]         |
|   57 | Accept |     0.21488 |      14.209 |     0.21297 |     0.21516 |         none |        false |   4.4629e-06 | [  1  80]             |
|   58 | Accept |      0.2206 |      102.47 |     0.21297 |     0.21527 |         none |        false |   3.4266e-05 | [298 199 138]         |
|   59 | Accept |     0.21456 |      3.1248 |     0.21297 |     0.21532 |         none |        false |   3.8591e-08 |  1                    |
|   60 | Best   |     0.21202 |      7.9207 |     0.21202 |     0.21528 |         none |         true |    3.244e-09 | [ 10   2]             |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   61 | Accept |     0.21424 |      32.984 |     0.21202 |      0.2153 |         none |         true |   1.2178e-07 | [291   3]             |
|   62 | Accept |     0.21488 |      1.5184 |     0.21202 |     0.21366 |         none |         true |   3.2043e-08 |  1                    |
|   63 | Accept |     0.21901 |      26.273 |     0.21202 |     0.21482 |         none |         true |   1.3444e-08 | [204   2 243]         |
|   64 | Accept |     0.21488 |      6.2945 |     0.21202 |     0.21471 |         none |         true |   3.6493e-06 | [  1  19]             |
|   65 | Accept |     0.32422 |      16.531 |     0.21202 |     0.21506 |      sigmoid |         true |   3.2181e-09 | [ 49  30]             |
|   66 | Accept |     0.21519 |      5.8113 |     0.21202 |     0.21387 |         none |         true |   3.8265e-07 | [  1  10   1]         |
|   67 | Accept |     0.22028 |      46.305 |     0.21202 |     0.21471 |         none |         true |    2.941e-06 | [134  13 244]         |
|   68 | Accept |     0.21456 |      8.6221 |     0.21202 |     0.21491 |      sigmoid |         true |    1.358e-06 | [  1  23]             |
|   69 | Accept |     0.29307 |      73.252 |     0.21202 |      0.2148 |      sigmoid |         true |   2.7991e-07 | [296 100   2]         |
|   70 | Accept |     0.21519 |       8.829 |     0.21202 |     0.21422 |      sigmoid |         true |    2.105e-05 | [  1  26]             |
|   71 | Accept |     0.21424 |      78.573 |     0.21202 |     0.21538 |      sigmoid |         true |   3.7739e-06 | [  1 181 240]         |
|   72 | Accept |     0.74189 |     0.36797 |     0.21202 |     0.21511 |         tanh |        false |       31.466 | [160  18]             |
|   73 | Accept |     0.23935 |      42.077 |     0.21202 |     0.21485 |      sigmoid |         true |   8.3865e-06 | [278  14]             |
|   74 | Accept |     0.21996 |      51.114 |     0.21202 |     0.20972 |         none |        false |   3.7709e-09 | [229   7 241]         |
|   75 | Accept |     0.21329 |      5.0237 |     0.21202 |     0.21425 |      sigmoid |        false |   1.7549e-08 |  1                    |
|   76 | Accept |     0.21742 |      1.1517 |     0.21202 |     0.21027 |         none |        false |   5.5095e-05 |  1                    |
|   77 | Accept |     0.22028 |      92.125 |     0.21202 |     0.21008 |         none |        false |   2.1231e-06 | [257 261]             |
|   78 | Accept |     0.21456 |      51.296 |     0.21202 |        0.21 |         tanh |         true |   1.3176e-06 | [  1 186  64]         |
|   79 | Accept |     0.21265 |      4.9246 |     0.21202 |     0.21006 |         relu |         true |   2.6891e-06 |  1                    |
|   80 | Accept |     0.22219 |      10.504 |     0.21202 |     0.20997 |         none |         true |   4.6566e-05 |  273                  |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   81 | Accept |     0.21329 |      1.2294 |     0.21202 |     0.21009 |         none |         true |   2.6808e-05 |  1                    |
|   82 | Accept |     0.21488 |      1.6326 |     0.21202 |     0.20863 |         none |         true |   4.0054e-09 | [  1  23]             |
|   83 | Accept |     0.21392 |      27.767 |     0.21202 |     0.21006 |         none |         true |   5.7106e-06 | [244   2]             |
|   84 | Accept |     0.21392 |      24.581 |     0.21202 |     0.20884 |         tanh |        false |   1.6911e-06 | [  1  14  70]         |
|   85 | Accept |      0.2136 |      34.531 |     0.21202 |     0.20886 |      sigmoid |        false |    6.912e-07 | [  1  10 218]         |
|   86 | Accept |     0.21488 |       10.99 |     0.21202 |     0.20888 |         none |        false |   2.3735e-08 | [  7   1 257]         |
|   87 | Accept |     0.21583 |      6.9518 |     0.21202 |     0.20957 |      sigmoid |         true |   5.7559e-06 | [  1   2]             |
|   88 | Accept |     0.22155 |      32.717 |     0.21202 |     0.20958 |         none |         true |   5.0794e-09 | [289   5]             |
|   89 | Accept |     0.21424 |      22.295 |     0.21202 |     0.21213 |         none |         true |    3.292e-05 | [  2   1 275]         |
|   90 | Accept |     0.21996 |      66.168 |     0.21202 |     0.21214 |         none |        false |    4.484e-05 | [263 231]             |
|   91 | Accept |     0.21964 |      31.478 |     0.21202 |     0.20975 |         none |        false |   4.0107e-08 | [ 14 193  15]         |
|   92 | Accept |     0.21901 |      38.288 |     0.21202 |     0.20979 |         none |         true |   1.0798e-07 | [  2  27 266]         |
|   93 | Accept |     0.21678 |      40.626 |     0.21202 |     0.21217 |         tanh |         true |   3.8729e-09 | [  1  11 235]         |
|   94 | Accept |     0.21742 |      40.422 |     0.21202 |      0.2101 |      sigmoid |         true |   6.2846e-05 | [  1  20 263]         |
|   95 | Accept |     0.74189 |     0.67204 |     0.21202 |     0.20996 |      sigmoid |        false |       30.844 | [221  55 105]         |
|   96 | Best   |     0.21011 |      44.631 |     0.21011 |      0.2098 |         tanh |         true |   4.4224e-08 | [  1  73 107]         |
|   97 | Accept |     0.21964 |       8.977 |     0.21011 |     0.20842 |         none |         true |   1.3171e-05 | [ 12  14]             |
|   98 | Accept |     0.22187 |      68.624 |     0.21011 |     0.20836 |         relu |         true |   2.7481e-08 | [  1  79 281]         |
|   99 | Accept |     0.21488 |      6.7468 |     0.21011 |      0.2084 |         none |         true |   3.3818e-09 | [  1  32 249]         |
|  100 | Accept |     0.21233 |      29.459 |     0.21011 |     0.20832 |      sigmoid |         true |   1.4834e-05 | [  1   1 216]         |

__________________________________________________________
Optimization completed.
MaxObjectiveEvaluations of 100 reached.
Total function evaluations: 100
Total elapsed time: 2835.9139 seconds
Total objective function evaluation time: 2796.6941

Best observed feasible point:
    Activations    Standardize      Lambda        LayerSizes   
    ___________    ___________    __________    _______________

       tanh           true        4.4224e-08    1     73    107

Observed objective function value = 0.21011
Estimated objective function value = 0.2131
Function evaluation time = 44.631

Best estimated feasible point (according to models):
    Activations    Standardize      Lambda        LayerSizes   
    ___________    ___________    __________    _______________

       tanh           true        3.8729e-09    1     11    235

Estimated objective function value = 0.20832
Estimated function evaluation time = 39.7382

Figure contains an axes object. The axes object with title Min objective vs. Number of function evaluations, xlabel Function evaluations, ylabel Min objective contains 2 objects of type line. These objects represent Min observed objective, Estimated min objective.

Mdl = 
  ClassificationNeuralNetwork
                       PredictorNames: {'WC_TA'  'RE_TA'  'EBIT_TA'  'MVE_BVTD'  'S_TA'  'Industry'}
                         ResponseName: 'Rating'
                CategoricalPredictors: 6
                           ClassNames: [AAA    AA    A    BBB    BB    B    CCC]
                       ScoreTransform: 'none'
                      NumObservations: 3146
    HyperparameterOptimizationResults: [1×1 BayesianOptimization]
                           LayerSizes: [1 11 235]
                          Activations: 'tanh'
                OutputLayerActivation: 'softmax'
                               Solver: 'LBFGS'
                      ConvergenceInfo: [1×1 struct]
                      TrainingHistory: [1000×7 table]


  Properties, Methods

Mdl is a trained ClassificationNeuralNetwork classifier. The model corresponds to the best estimated feasible point, as opposed to the best observed feasible point. (For details on this distinction, see bestPoint.) You can use dot notation to access the properties of Mdl. For example, you can specify Mdl.HyperparameterOptimizationResults to get more information about the optimization of the neural network model.

Find the classification accuracy of the model on the test data set. Visualize the results by using a confusion matrix.

modelAccuracy = 1 - loss(Mdl,creditTest,"Rating", ...
    "LossFun","classiferror")
modelAccuracy = 0.8002
confusionchart(creditTest.Rating,predict(Mdl,creditTest))

Figure contains an object of type ConfusionMatrixChart.

The model has all predicted classes within one unit of the true classes, meaning all predictions are off by no more than one rating.

Train a neural network classifier using the OptimizeHyperparameters argument to improve the resulting classification accuracy. Use the hyperparameters function to specify larger-than-default values for the number of layers used and the layer size range.

Read the sample file CreditRating_Historical.dat into a table. The predictor data consists of financial ratios and industry sector information for a list of corporate customers. The response variable consists of credit ratings assigned by a rating agency.

creditrating = readtable("CreditRating_Historical.dat");

Because each value in the ID variable is a unique customer ID, that is, length(unique(creditrating.ID)) is equal to the number of observations in creditrating, the ID variable is a poor predictor. Remove the ID variable from the table, and convert the Industry variable to a categorical variable.

creditrating = removevars(creditrating,"ID");
creditrating.Industry = categorical(creditrating.Industry);

Convert the Rating response variable to an ordinal categorical variable.

creditrating.Rating = categorical(creditrating.Rating, ...
    ["AAA","AA","A","BBB","BB","B","CCC"],"Ordinal",true);

Partition the data into training and test sets. Use approximately 80% of the observations to train a neural network model, and 20% of the observations to test the performance of the trained model on new data. Use cvpartition to partition the data.

rng("default") % For reproducibility of the partition
c = cvpartition(creditrating.Rating,"Holdout",0.20);
trainingIndices = training(c); % Indices for the training set
testIndices = test(c); % Indices for the test set
creditTrain = creditrating(trainingIndices,:);
creditTest = creditrating(testIndices,:);

List the hyperparameters available for this problem of fitting the Rating response.

params = hyperparameters("fitcnet",creditTrain,"Rating");
for ii = 1:length(params)
    disp(ii);disp(params(ii))
end
     1

  optimizableVariable with properties:

         Name: 'NumLayers'
        Range: [1 3]
         Type: 'integer'
    Transform: 'none'
     Optimize: 1

     2

  optimizableVariable with properties:

         Name: 'Activations'
        Range: {'relu'  'tanh'  'sigmoid'  'none'}
         Type: 'categorical'
    Transform: 'none'
     Optimize: 1

     3

  optimizableVariable with properties:

         Name: 'Standardize'
        Range: {'true'  'false'}
         Type: 'categorical'
    Transform: 'none'
     Optimize: 1

     4

  optimizableVariable with properties:

         Name: 'Lambda'
        Range: [3.1786e-09 31.7864]
         Type: 'real'
    Transform: 'log'
     Optimize: 1

     5

  optimizableVariable with properties:

         Name: 'LayerWeightsInitializer'
        Range: {'glorot'  'he'}
         Type: 'categorical'
    Transform: 'none'
     Optimize: 0

     6

  optimizableVariable with properties:

         Name: 'LayerBiasesInitializer'
        Range: {'zeros'  'ones'}
         Type: 'categorical'
    Transform: 'none'
     Optimize: 0

     7

  optimizableVariable with properties:

         Name: 'Layer_1_Size'
        Range: [1 300]
         Type: 'integer'
    Transform: 'log'
     Optimize: 1

     8

  optimizableVariable with properties:

         Name: 'Layer_2_Size'
        Range: [1 300]
         Type: 'integer'
    Transform: 'log'
     Optimize: 1

     9

  optimizableVariable with properties:

         Name: 'Layer_3_Size'
        Range: [1 300]
         Type: 'integer'
    Transform: 'log'
     Optimize: 1

    10

  optimizableVariable with properties:

         Name: 'Layer_4_Size'
        Range: [1 300]
         Type: 'integer'
    Transform: 'log'
     Optimize: 0

    11

  optimizableVariable with properties:

         Name: 'Layer_5_Size'
        Range: [1 300]
         Type: 'integer'
    Transform: 'log'
     Optimize: 0

To try more layers than the default of 1 through 3, set the range of NumLayers (optimizable variable 1) to its maximum allowable size, [1 5]. Also, set Layer_4_Size and Layer_5_Size (optimizable variables 10 and 11, respectively) to be optimized.

params(1).Range = [1 5];
params(10).Optimize = true;
params(11).Optimize = true;

Set the range of all layer sizes (optimizable variables 7 through 11) to [1 400] instead of the default [1 300].

for ii = 7:11
    params(ii).Range = [1 400];
end

Train a neural network classifier by passing the training data creditTrain to the fitcnet function, and include the OptimizeHyperparameters argument set to params. For reproducibility, set the AcquisitionFunctionName to "expected-improvement-plus" in a HyperparameterOptimizationOptions structure. To attempt to get a better solution, set the number of optimization steps to 100 instead of the default 30.

rng("default") % For reproducibility
Mdl = fitcnet(creditTrain,"Rating","OptimizeHyperparameters",params, ...
    "HyperparameterOptimizationOptions", ...
    struct("AcquisitionFunctionName","expected-improvement-plus", ...
    "MaxObjectiveEvaluations",100))
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|    1 | Best   |     0.74189 |     0.24554 |     0.74189 |     0.74189 |      sigmoid |         true |      0.68961 | [104   1   5   3   1] |
|    2 | Best   |     0.22219 |      79.821 |     0.22219 |     0.24285 |         relu |         true |   0.00058564 | [ 38 208 162]         |
|    3 | Accept |     0.63859 |      11.228 |     0.22219 |     0.22668 |      sigmoid |         true |   1.9768e-06 | [  1  25   1 287   7] |
|    4 | Best   |     0.21933 |      49.537 |     0.21933 |     0.22311 |         none |        false |   1.3353e-06 |  320                  |
|    5 | Accept |     0.74189 |     0.12879 |     0.21933 |     0.21936 |         relu |         true |       2.7056 | [  1   2   1]         |
|    6 | Accept |     0.29434 |      124.68 |     0.21933 |     0.21936 |         relu |         true |   1.0503e-06 | [301  31 400]         |
|    7 | Accept |     0.23776 |      43.931 |     0.21933 |     0.21936 |         relu |         true |   1.8733e-07 | [  3 142  56]         |
|    8 | Best   |     0.21488 |      38.338 |     0.21488 |     0.21626 |         none |        false |   1.7015e-07 | [329   1]             |
|    9 | Accept |     0.21933 |      35.508 |     0.21488 |     0.21613 |         none |        false |   4.0697e-07 | [  2 157   8   3 110] |
|   10 | Accept |     0.21996 |      102.77 |     0.21488 |     0.21609 |         none |        false |     1.21e-08 | [ 13 207 258  24 167] |
|   11 | Accept |     0.74189 |     0.32504 |     0.21488 |     0.21626 |         none |        false |       5.7945 | [261   8   1  62   3] |
|   12 | Accept |     0.74189 |     0.70441 |     0.21488 |     0.21713 |         relu |         true |      0.18642 | [ 92 275   2 134   2] |
|   13 | Accept |     0.21933 |      35.818 |     0.21488 |     0.21632 |         none |        false |    4.906e-05 | [ 50  41   3  10 140] |
|   14 | Best   |     0.21456 |      102.86 |     0.21456 |     0.21462 |         none |        false |   7.3009e-06 | [  1 179 325  31  89] |
|   15 | Accept |     0.21488 |      18.953 |     0.21456 |     0.21467 |         none |        false |    6.274e-09 | [311  11   8   1  10] |
|   16 | Accept |     0.21901 |      122.61 |     0.21456 |     0.21452 |         none |        false |   3.3667e-07 | [  8 283 245   9  26] |
|   17 | Accept |     0.21933 |      124.64 |     0.21456 |      0.2145 |         none |        false |   2.9413e-07 | [ 16   2 116 168 203] |
|   18 | Accept |     0.30579 |      89.942 |     0.21456 |     0.21468 |         relu |         true |   3.2001e-09 | [199   4 297]         |
|   19 | Accept |     0.74189 |      1.6194 |     0.21456 |      0.2145 |         relu |         true |       18.158 | [258 165 355   2]     |
|   20 | Accept |     0.25779 |      41.138 |     0.21456 |     0.21451 |         relu |         true |   0.00011883 | [ 11  20 230]         |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   21 | Accept |     0.27209 |      49.233 |     0.21456 |     0.21451 |         relu |        false |   1.2155e-07 | [ 44  93  50   2]     |
|   22 | Accept |     0.23045 |      40.584 |     0.21456 |     0.21451 |         relu |        false |   3.9732e-05 | [ 67  55   3   2]     |
|   23 | Accept |     0.59917 |      38.321 |     0.21456 |     0.21451 |         relu |        false |     0.010689 | [ 67 137   2  15]     |
|   24 | Accept |     0.34107 |      34.102 |     0.21456 |     0.21453 |         relu |        false |     3.54e-06 | [ 70   3   3 149]     |
|   25 | Accept |     0.28671 |      94.448 |     0.21456 |     0.21453 |         relu |        false |   3.4107e-09 | [148 377]             |
|   26 | Accept |     0.25175 |      31.357 |     0.21456 |     0.21453 |         tanh |        false |   6.0043e-08 | [  8 144  13]         |
|   27 | Accept |     0.25556 |      42.215 |     0.21456 |     0.21453 |         tanh |        false |   6.7749e-06 | [ 38  10   7   3 192] |
|   28 | Accept |     0.29688 |      8.8611 |     0.21456 |     0.21453 |         tanh |        false |    0.0030854 | [  2   4  45]         |
|   29 | Accept |     0.74189 |     0.45105 |     0.21456 |     0.21453 |         tanh |        false |       3.9046 | [363   5  88]         |
|   30 | Accept |      0.2171 |      39.161 |     0.21456 |     0.21453 |         tanh |        false |   3.2673e-09 | [  2  10 228   6]     |
|   31 | Accept |     0.23268 |      93.767 |     0.21456 |     0.21453 |         tanh |        false |   0.00014623 | [391  21 264   8]     |
|   32 | Accept |     0.24539 |      11.764 |     0.21456 |     0.21453 |      sigmoid |        false |    3.653e-09 | [ 18   5]             |
|   33 | Accept |     0.22441 |      12.443 |     0.21456 |     0.21453 |      sigmoid |        false |   4.9278e-07 | [  8   3  12]         |
|   34 | Accept |     0.65512 |      3.3187 |     0.21456 |     0.21453 |      sigmoid |        false |   0.00010399 | [ 35  12  40   2]     |
|   35 | Accept |     0.26605 |      47.571 |     0.21456 |     0.21454 |      sigmoid |        false |   5.7344e-08 | [206  54]             |
|   36 | Accept |     0.25143 |      27.106 |     0.21456 |     0.21454 |         tanh |         true |   6.6658e-09 | [  6   4  83  21]     |
|   37 | Accept |     0.23713 |      36.344 |     0.21456 |     0.21454 |         tanh |         true |   8.8703e-07 | [  5 168  17]         |
|   38 | Accept |     0.23045 |      28.862 |     0.21456 |     0.21454 |         tanh |         true |    0.0002317 | [ 23  59  33]         |
|   39 | Accept |     0.74189 |     0.22938 |     0.21456 |     0.21454 |         tanh |         true |        0.042 | [ 34  12]             |
|   40 | Accept |     0.27622 |      24.206 |     0.21456 |     0.21454 |         tanh |         true |   2.2992e-05 | [ 15  12   5  63]     |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   41 | Accept |      0.2562 |      11.592 |     0.21456 |     0.21454 |         tanh |         true |   8.3157e-08 | [  7  26   1]         |
|   42 | Accept |      0.2225 |       7.546 |     0.21456 |     0.21454 |         none |         true |   3.2548e-09 | [  5  15]             |
|   43 | Accept |     0.21996 |      90.518 |     0.21456 |     0.21454 |         none |         true |    1.927e-07 | [312  74 116 171]     |
|   44 | Accept |      0.2171 |       9.248 |     0.21456 |     0.21454 |         none |         true |   3.8657e-05 | [ 21   5]             |
|   45 | Accept |     0.28163 |      1.1081 |     0.21456 |     0.21454 |         none |         true |    0.0042674 | [  5   4   1  32]     |
|   46 | Best   |     0.21265 |      90.522 |     0.21265 |     0.21266 |         none |         true |   3.2216e-06 | [ 11   4 315 183   1] |
|   47 | Accept |     0.74189 |     0.20411 |     0.21265 |     0.21266 |         none |         true |       12.693 | [  1   9  67]         |
|   48 | Accept |      0.2225 |       5.836 |     0.21265 |     0.21266 |         none |         true |   1.9687e-08 |  5                    |
|   49 | Accept |     0.74189 |     0.41584 |     0.21265 |     0.21266 |      sigmoid |        false |       31.682 | [ 86   6  97]         |
|   50 | Accept |     0.21551 |      22.706 |     0.21265 |     0.21267 |         none |         true |   0.00032103 | [  3 310  32]         |
|   51 | Accept |     0.21901 |        1.65 |     0.21265 |     0.21267 |         none |        false |    0.0011904 | [  4  18]             |
|   52 | Accept |     0.22187 |      23.949 |     0.21265 |     0.21267 |         none |        false |   0.00033519 | [171   2  16  83]     |
|   53 | Accept |      0.2972 |      142.39 |     0.21265 |     0.21267 |      sigmoid |         true |   3.2844e-09 | [340 343   9]         |
|   54 | Accept |     0.74189 |     0.44397 |     0.21265 |     0.21268 |         relu |        false |       30.468 | [ 35   9   4 266]     |
|   55 | Accept |     0.21774 |      9.8434 |     0.21265 |     0.21268 |         none |        false |   3.2361e-09 | [  6   5  19]         |
|   56 | Accept |     0.21996 |      66.573 |     0.21265 |     0.21279 |         none |         true |   9.5604e-07 | [369 101]             |
|   57 | Accept |     0.22378 |      51.304 |     0.21265 |     0.21279 |         relu |        false |   0.00013356 | [  7  12 186  47   3] |
|   58 | Accept |     0.46821 |      32.156 |     0.21265 |     0.21268 |         relu |         true |   3.7939e-08 | [367   3  19   1]     |
|   59 | Accept |     0.34456 |      7.7912 |     0.21265 |     0.21266 |         relu |         true |   1.3046e-06 | [  1   3  18]         |
|   60 | Accept |     0.28195 |      54.602 |     0.21265 |     0.21268 |      sigmoid |        false |   1.6723e-08 | [ 20   2  25 185   3] |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   61 | Accept |     0.30737 |      67.794 |     0.21265 |     0.21268 |         relu |         true |   3.2749e-09 | [ 99 298]             |
|   62 | Accept |     0.21901 |      81.661 |     0.21265 |     0.21269 |         none |         true |   9.6543e-06 | [155 348   3   4   5] |
|   63 | Accept |     0.30197 |       22.19 |     0.21265 |     0.21862 |         tanh |        false |   1.0964e-08 |  85                   |
|   64 | Accept |     0.21837 |      35.774 |     0.21265 |     0.21268 |         none |         true |   0.00010885 | [ 28 206  23]         |
|   65 | Accept |      0.2295 |      57.177 |     0.21265 |     0.21268 |         tanh |        false |   5.7538e-07 | [  2 397   3   2]     |
|   66 | Accept |     0.24412 |      3.6737 |     0.21265 |     0.21265 |         none |         true |   0.00030943 |  188                  |
|   67 | Accept |     0.30292 |      89.668 |     0.21265 |     0.21265 |         tanh |        false |   3.3033e-09 | [309 318]             |
|   68 | Accept |     0.53306 |      22.767 |     0.21265 |     0.21265 |         relu |         true |    1.928e-06 | [  1 398   1]         |
|   69 | Accept |     0.31977 |      37.867 |     0.21265 |     0.21699 |         relu |         true |   1.1995e-07 | [  1   1 386]         |
|   70 | Accept |     0.22028 |      42.181 |     0.21265 |     0.21721 |         none |         true |   3.3054e-09 | [174 153 319]         |
|   71 | Accept |      0.3042 |      127.78 |     0.21265 |     0.21727 |         tanh |        false |   4.5222e-07 | [ 27  14 357 235]     |
|   72 | Accept |     0.21901 |       40.13 |     0.21265 |     0.21731 |         none |         true |    2.547e-05 | [ 41   8 383]         |
|   73 | Accept |      0.2225 |      67.221 |     0.21265 |     0.21744 |         tanh |        false |   0.00012735 | [326  72]             |
|   74 | Accept |     0.21964 |      19.274 |     0.21265 |     0.21773 |         none |        false |   2.5979e-08 | [  2 140]             |
|   75 | Accept |     0.21869 |      61.973 |     0.21265 |     0.21779 |         none |        false |    7.683e-05 | [110  36 353   7  26] |
|   76 | Accept |     0.21964 |      7.4093 |     0.21265 |     0.21779 |         none |        false |   9.5881e-05 | [ 17  20]             |
|   77 | Accept |     0.21996 |      36.057 |     0.21265 |     0.21798 |         none |         true |   2.9852e-08 | [ 86  10 272  45]     |
|   78 | Accept |     0.22823 |      6.1521 |     0.21265 |     0.21803 |         none |        false |    0.0042535 | [  7   1 363  10]     |
|   79 | Accept |     0.21805 |      32.939 |     0.21265 |     0.21805 |         none |        false |    0.0011893 | [280 131 381]         |
|   80 | Accept |     0.21424 |      9.1044 |     0.21265 |     0.21814 |         none |        false |   9.9793e-06 | [ 35   1]             |
|============================================================================================================================================|
| Iter | Eval   | Objective   | Objective   | BestSoFar   | BestSoFar   |  Activations |  Standardize |       Lambda |            LayerSizes |
|      | result |             | runtime     | (observed)  | (estim.)    |              |              |              |                       |
|============================================================================================================================================|
|   81 | Accept |     0.21996 |      42.556 |     0.21265 |     0.21815 |         none |         true |   7.1625e-07 | [ 14  11 393]         |
|   82 | Accept |     0.21964 |      30.291 |     0.21265 |     0.21812 |         tanh |        false |   0.00044672 | [  3 210]             |
|   83 | Accept |     0.22028 |      134.98 |     0.21265 |     0.21889 |         none |        false |   6.1382e-08 | [ 35  92 308 307]     |
|   84 | Accept |     0.33312 |      47.699 |     0.21265 |     0.21783 |         relu |        false |   5.3459e-05 | [ 29  19 361   3]     |
|   85 | Accept |     0.29243 |      79.597 |     0.21265 |     0.21799 |         tanh |         true |   1.0309e-07 | [ 27  43 369   6  10] |
|   86 | Accept |     0.24126 |      7.0959 |     0.21265 |     0.21807 |         relu |        false |   0.00018455 | [ 11   1]             |
|   87 | Accept |     0.21901 |      63.435 |     0.21265 |     0.21811 |         none |        false |    2.345e-06 | [ 10  70 394]         |
|   88 | Accept |     0.21805 |      55.381 |     0.21265 |      0.2181 |         none |         true |    9.235e-05 | [  4  60 370]         |
|   89 | Accept |     0.21996 |      9.4909 |     0.21265 |      0.2181 |         none |         true |   1.2184e-07 |  307                  |
|   90 | Accept |     0.21488 |      8.3628 |     0.21265 |     0.21811 |         tanh |         true |   3.2637e-09 | [  1  17]             |
|   91 | Accept |     0.21774 |      70.692 |     0.21265 |     0.21271 |         none |        false |   2.3269e-05 | [  7   2 328  65  84] |
|   92 | Accept |     0.22568 |      19.881 |     0.21265 |     0.21807 |         relu |        false |   7.5349e-05 | [  4  43  42  20]     |
|   93 | Accept |      0.2171 |      183.67 |     0.21265 |     0.21267 |         none |         true |   1.0276e-08 | [  2 365 386  22]     |
|   94 | Accept |     0.22219 |       64.04 |     0.21265 |     0.21272 |         relu |        false |   0.00024046 | [ 72 340]             |
|   95 | Accept |     0.29879 |      77.664 |     0.21265 |     0.21266 |         relu |         true |    1.764e-05 | [246  67  68]         |
|   96 | Accept |     0.22854 |      51.505 |     0.21265 |     0.21777 |         tanh |         true |   3.8226e-05 | [  4   9 386]         |
|   97 | Accept |     0.21837 |      49.418 |     0.21265 |     0.21266 |         none |        false |   0.00048868 | [ 44 257 370]         |
|   98 | Accept |     0.29212 |      172.26 |     0.21265 |     0.21266 |         relu |        false |   3.6694e-09 | [ 85 105 221 259   2] |
|   99 | Accept |     0.23427 |      67.281 |     0.21265 |     0.21273 |      sigmoid |        false |   3.4231e-08 | [205   1 273]         |
|  100 | Accept |     0.21583 |      218.34 |     0.21265 |     0.21273 |         relu |        false |    0.0021155 | [308 356 153   4]     |

__________________________________________________________
Optimization completed.
MaxObjectiveEvaluations of 100 reached.
Total function evaluations: 100
Total elapsed time: 4686.8262 seconds
Total objective function evaluation time: 4641.9874

Best observed feasible point:
    Activations    Standardize      Lambda                LayerSizes          
    ___________    ___________    __________    ______________________________

       none           true        3.2216e-06    11      4    315    183      1

Observed objective function value = 0.21265
Estimated objective function value = 0.21273
Function evaluation time = 90.5222

Best estimated feasible point (according to models):
    Activations    Standardize      Lambda                LayerSizes          
    ___________    ___________    __________    ______________________________

       none           true        3.2216e-06    11      4    315    183      1

Estimated objective function value = 0.21273
Estimated function evaluation time = 82.3209

Figure contains an axes object. The axes object with title Min objective vs. Number of function evaluations, xlabel Function evaluations, ylabel Min objective contains 2 objects of type line. These objects represent Min observed objective, Estimated min objective.

Mdl = 
  ClassificationNeuralNetwork
                       PredictorNames: {'WC_TA'  'RE_TA'  'EBIT_TA'  'MVE_BVTD'  'S_TA'  'Industry'}
                         ResponseName: 'Rating'
                CategoricalPredictors: 6
                           ClassNames: [AAA    AA    A    BBB    BB    B    CCC]
                       ScoreTransform: 'none'
                      NumObservations: 3146
    HyperparameterOptimizationResults: [1×1 BayesianOptimization]
                           LayerSizes: [11 4 315 183 1]
                          Activations: 'none'
                OutputLayerActivation: 'softmax'
                               Solver: 'LBFGS'
                      ConvergenceInfo: [1×1 struct]
                      TrainingHistory: [1000×7 table]


  Properties, Methods

Find the classification accuracy of the model on the test data set. Visualize the results by using a confusion matrix.

testAccuracy = 1 - loss(Mdl,creditTest,"Rating", ...
    "LossFun","classiferror")
testAccuracy = 0.8002
confusionchart(creditTest.Rating,predict(Mdl,creditTest))

Figure contains an object of type ConfusionMatrixChart.

The model has all predicted classes within one unit of the true classes, meaning all predictions are off by no more than one rating.

Input Arguments

collapse all

Sample data used to train the model, specified as a table. Each row of Tbl corresponds to one observation, and each column corresponds to one predictor variable. Optionally, Tbl can contain one additional column for the response variable. Multicolumn variables and cell arrays other than cell arrays of character vectors are not allowed.

  • If Tbl contains the response variable, and you want to use all remaining variables in Tbl as predictors, then specify the response variable by using ResponseVarName.

  • If Tbl contains the response variable, and you want to use only a subset of the remaining variables in Tbl as predictors, then specify a formula by using formula.

  • If Tbl does not contain the response variable, then specify a response variable by using Y. The length of the response variable and the number of rows in Tbl must be equal.

Response variable name, specified as the name of a variable in Tbl.

You must specify ResponseVarName as a character vector or string scalar. For example, if the response variable Y is stored as Tbl.Y, then specify it as "Y". Otherwise, the software treats all columns of Tbl, including Y, as predictors when training the model.

The response variable must be a categorical, character, or string array; a logical or numeric vector; or a cell array of character vectors. If Y is a character array, then each element of the response variable must correspond to one row of the array.

A good practice is to specify the order of the classes by using the ClassNames name-value argument.

Data Types: char | string

Explanatory model of the response variable and a subset of the predictor variables, specified as a character vector or string scalar in the form "Y~x1+x2+x3". In this form, Y represents the response variable, and x1, x2, and x3 represent the predictor variables.

To specify a subset of variables in Tbl as predictors for training the model, use a formula. If you specify a formula, then the software does not use any variables in Tbl that do not appear in formula.

The variable names in the formula must be both variable names in Tbl (Tbl.Properties.VariableNames) and valid MATLAB® identifiers. You can verify the variable names in Tbl by using the isvarname function. If the variable names are not valid, then you can convert them by using the matlab.lang.makeValidName function.

Data Types: char | string

Class labels used to train the model, specified as a numeric, categorical, or logical vector; a character or string array; or a cell array of character vectors.

  • If Y is a character array, then each element of the class labels must correspond to one row of the array.

  • The length of Y must be equal to the number of rows in Tbl or X.

  • A good practice is to specify the class order by using the ClassNames name-value argument.

Data Types: single | double | categorical | logical | char | string | cell

Predictor data used to train the model, specified as a numeric matrix.

By default, the software treats each row of X as one observation, and each column as one predictor.

The length of Y and the number of observations in X must be equal.

To specify the names of the predictors in the order of their appearance in X, use the PredictorNames name-value argument.

Note

If you orient your predictor matrix so that observations correspond to columns and specify 'ObservationsIn','columns', then you might experience a significant reduction in computation time.

Data Types: single | double

Note

The software treats NaN, empty character vector (''), empty string (""), <missing>, and <undefined> elements as missing values, and removes observations with any of these characteristics:

  • Missing value in the response variable (for example, Y or ValidationData{2})

  • At least one missing value in a predictor observation (for example, row in X or ValidationData{1})

  • NaN value or 0 weight (for example, value in Weights or ValidationData{3})

  • Class label with 0 prior probability (value in Prior)

Name-Value Arguments

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: fitcnet(X,Y,'LayerSizes',[10 10],'Activations',["relu","tanh"]) specifies to create a neural network with two fully connected layers, each with 10 outputs. The first layer uses a rectified linear unit (ReLU) activation function, and the second uses a hyperbolic tangent activation function.

Neural Network Options

collapse all

Sizes of the fully connected layers in the neural network model, specified as a positive integer vector. The ith element of LayerSizes is the number of outputs in the ith fully connected layer of the neural network model.

LayerSizes does not include the size of the final fully connected layer that uses a softmax activation function. For more information, see Neural Network Structure.

Example: 'LayerSizes',[100 25 10]

Activation functions for the fully connected layers of the neural network model, specified as a character vector, string scalar, string array, or cell array of character vectors with values from this table.

ValueDescription
'relu'

Rectified linear unit (ReLU) function — Performs a threshold operation on each element of the input, where any value less than zero is set to zero, that is,

f(x)={x,x00,x<0

'tanh'

Hyperbolic tangent (tanh) function — Applies the tanh function to each input element

'sigmoid'

Sigmoid function — Performs the following operation on each input element:

f(x)=11+ex

'none'

Identity function — Returns each input element without performing any transformation, that is, f(x) = x

  • If you specify one activation function only, then Activations is the activation function for every fully connected layer of the neural network model, excluding the final fully connected layer. The activation function for the final fully connected layer is always softmax (see Neural Network Structure).

  • If you specify an array of activation functions, then the ith element of Activations is the activation function for the ith layer of the neural network model.

Example: 'Activations','sigmoid'

Function to initialize the fully connected layer weights, specified as 'glorot' or 'he'.

ValueDescription
'glorot'Initialize the weights with the Glorot initializer [1] (also known as the Xavier initializer). For each layer, the Glorot initializer independently samples from a uniform distribution with zero mean and variance 2/(I+O), where I is the input size and O is the output size for the layer.
'he'Initialize the weights with the He initializer [2]. For each layer, the He initializer samples from a normal distribution with zero mean and variance 2/I, where I is the input size for the layer.

Example: 'LayerWeightsInitializer','he'

Type of initial fully connected layer biases, specified as 'zeros' or 'ones'.

  • If you specify the value 'zeros', then each fully connected layer has an initial bias of 0.

  • If you specify the value 'ones', then each fully connected layer has an initial bias of 1.

Example: 'LayerBiasesInitializer','ones'

Data Types: char | string

Predictor data observation dimension, specified as 'rows' or 'columns'.

Note

If you orient your predictor matrix so that observations correspond to columns and specify 'ObservationsIn','columns', then you might experience a significant reduction in computation time. You cannot specify 'ObservationsIn','columns' for predictor data in a table.

Example: 'ObservationsIn','columns'

Data Types: char | string

Regularization term strength, specified as a nonnegative scalar. The software composes the objective function for minimization from the cross-entropy loss function and the ridge (L2) penalty term.

Example: 'Lambda',1e-4

Data Types: single | double

Flag to standardize the predictor data, specified as a numeric or logical 0 (false) or 1 (true). If you set Standardize to true, then the software centers and scales each numeric predictor variable by the corresponding column mean and standard deviation. The software does not standardize the categorical predictors.

Example: 'Standardize',true

Data Types: single | double | logical

Convergence Control Options

collapse all

Verbosity level, specified as 0 or 1. The 'Verbose' name-value argument controls the amount of diagnostic information that fitcnet displays at the command line.

ValueDescription
0fitcnet does not display diagnostic information.
1fitcnet periodically displays diagnostic information.

By default, StoreHistory is set to true and fitcnet stores the diagnostic information inside of Mdl. Use Mdl.TrainingHistory to access the diagnostic information.

Example: 'Verbose',1

Data Types: single | double

Frequency of verbose printing, which is the number of iterations between printing to the command window, specified as a positive integer scalar. A value of 1 indicates to print diagnostic information at every iteration.

Note

To use this name-value argument, set Verbose to 1.

Example: 'VerboseFrequency',5

Data Types: single | double

Flag to store the training history, specified as a numeric or logical 0 (false) or 1 (true). If StoreHistory is set to true, then the software stores diagnostic information inside of Mdl, which you can access by using Mdl.TrainingHistory.

Example: 'StoreHistory',false

Data Types: single | double | logical

Initial step size, specified as a positive scalar or 'auto'. By default, fitcnet does not use the initial step size to determine the initial Hessian approximation used in training the model (see Training Solver). However, if you specify an initial step size s0, then the initial inverse-Hessian approximation is s00I. 0 is the initial gradient vector, and I is the identity matrix.

To have fitcnet determine an initial step size automatically, specify the value as 'auto'. In this case, the function determines the initial step size by using s0=0.5η0+0.1. s0 is the initial step vector, and η0 is the vector of unconstrained initial weights and biases.

Example: 'InitialStepSize','auto'

Data Types: single | double | char | string

Maximum number of training iterations, specified as a positive integer scalar.

The software returns a trained model regardless of whether the training routine successfully converges. Mdl.ConvergenceInfo contains convergence information.

Example: 'IterationLimit',1e8

Data Types: single | double

Relative gradient tolerance, specified as a nonnegative scalar.

Let t be the loss function at training iteration t, t be the gradient of the loss function with respect to the weights and biases at iteration t, and 0 be the gradient of the loss function at an initial point. If max|t|aGradientTolerance, where a=max(1,min|t|,max|0|), then the training process terminates.

Example: 'GradientTolerance',1e-5

Data Types: single | double

Loss tolerance, specified as a nonnegative scalar.

If the function loss at some iteration is smaller than LossTolerance, then the training process terminates.

Example: 'LossTolerance',1e-8

Data Types: single | double

Step size tolerance, specified as a nonnegative scalar.

If the step size at some iteration is smaller than StepTolerance, then the training process terminates.

Example: 'StepTolerance',1e-4

Data Types: single | double

Validation data for training convergence detection, specified as a cell array or table.

During the training process, the software periodically estimates the validation loss by using ValidationData. If the validation loss increases more than ValidationPatience times in a row, then the software terminates the training.

You can specify ValidationData as a table if you use a table Tbl of predictor data that contains the response variable. In this case, ValidationData must contain the same predictors and response contained in Tbl. The software does not apply weights to observations, even if Tbl contains a vector of weights. To specify weights, you must specify ValidationData as a cell array.

If you specify ValidationData as a cell array, then it must have the following format:

  • ValidationData{1} must have the same data type and orientation as the predictor data. That is, if you use a predictor matrix X, then ValidationData{1} must be an m-by-p or p-by-m matrix of predictor data that has the same orientation as X. The predictor variables in the training data X and ValidationData{1} must correspond. Similarly, if you use a predictor table Tbl of predictor data, then ValidationData{1} must be a table containing the same predictor variables contained in Tbl. The number of observations in ValidationData{1} and the predictor data can vary.

  • ValidationData{2} must match the data type and format of the response variable, either Y or ResponseVarName. If ValidationData{2} is an array of class labels, then it must have the same number of elements as the number of observations in ValidationData{1}. The set of all distinct labels of ValidationData{2} must be a subset of all distinct labels of Y. If ValidationData{1} is a table, then ValidationData{2} can be the name of the response variable in the table. If you want to use the same ResponseVarName or formula, you can specify ValidationData{2} as [].

  • Optionally, you can specify ValidationData{3} as an m-dimensional numeric vector of observation weights or the name of a variable in the table ValidationData{1} that contains observation weights. The software normalizes the weights with the validation data so that they sum to 1.

If you specify ValidationData and want to display the validation loss at the command line, set Verbose to 1.

Number of iterations between validation evaluations, specified as a positive integer scalar. A value of 1 indicates to evaluate validation metrics at every iteration.

Note

To use this name-value argument, you must specify ValidationData.

Example: 'ValidationFrequency',5

Data Types: single | double

Stopping condition for validation evaluations, specified as a nonnegative integer scalar. The training process stops if the validation loss is greater than or equal to the minimum validation loss computed so far, ValidationPatience times in a row. You can check the Mdl.TrainingHistory table to see the running total of times that the validation loss is greater than or equal to the minimum (Validation Checks).

Example: 'ValidationPatience',10

Data Types: single | double

Other Classification Options

collapse all

Categorical predictors list, specified as one of the values in this table. The descriptions assume that the predictor data has observations in rows and predictors in columns.

ValueDescription
Vector of positive integers

Each entry in the vector is an index value indicating that the corresponding predictor is categorical. The index values are between 1 and p, where p is the number of predictors used to train the model.

If fitcnet uses a subset of input variables as predictors, then the function indexes the predictors using only the subset. The CategoricalPredictors values do not count the response variable, observation weights variable, or any other variables that the function does not use.

Logical vector

A true entry means that the corresponding predictor is categorical. The length of the vector is p.

Character matrixEach row of the matrix is the name of a predictor variable. The names must match the entries in PredictorNames. Pad the names with extra blanks so each row of the character matrix has the same length.
String array or cell array of character vectorsEach element in the array is the name of a predictor variable. The names must match the entries in PredictorNames.
"all"All predictors are categorical.

By default, if the predictor data is in a table (Tbl), fitcnet assumes that a variable is categorical if it is a logical vector, categorical vector, character array, string array, or cell array of character vectors. If the predictor data is a matrix (X), fitcnet assumes that all predictors are continuous. To identify any other predictors as categorical predictors, specify them by using the CategoricalPredictors name-value argument.

For the identified categorical predictors, fitcnet creates dummy variables using two different schemes, depending on whether a categorical variable is unordered or ordered. For an unordered categorical variable, fitcnet creates one dummy variable for each level of the categorical variable. For an ordered categorical variable, fitcnet creates one less dummy variable than the number of categories. For details, see Automatic Creation of Dummy Variables.

Example: 'CategoricalPredictors','all'

Data Types: single | double | logical | char | string | cell

Names of classes to use for training, specified as a categorical, character, or string array; a logical or numeric vector; or a cell array of character vectors. ClassNames must have the same data type as the response variable in Tbl or Y.

If ClassNames is a character array, then each element must correspond to one row of the array.

Use ClassNames to:

  • Specify the order of the classes during training.

  • Specify the order of any input or output argument dimension that corresponds to the class order. For example, use ClassNames to specify the order of the dimensions of Cost or the column order of classification scores returned by predict.

  • Select a subset of classes for training. For example, suppose that the set of all distinct class names in Y is ["a","b","c"]. To train the model using observations from classes "a" and "c" only, specify "ClassNames",["a","c"].

The default value for ClassNames is the set of all distinct class names in the response variable in Tbl or Y.

Example: "ClassNames",["b","g"]

Data Types: categorical | char | string | logical | single | double | cell

Since R2023a

Misclassification cost, specified as a square matrix or structure array.

  • If you specify a square matrix Cost and the true class of an observation is i, then Cost(i,j) is the cost of classifying a point into class j. That is, rows correspond to the true classes, and columns correspond to the predicted classes. To specify the class order for the corresponding rows and columns of Cost, also set the ClassNames name-value argument.

  • If you specify a structure S, then it must have two fields:

    • S.ClassNames, which contains the class names as a variable of the same data type as Y

    • S.ClassificationCosts, which contains the cost matrix with rows and columns ordered as in S.ClassNames

The default value for Cost is ones(K) – eye(K), where K is the number of distinct classes.

Example: "Cost",[0 1; 2 0]

Data Types: single | double | struct

Predictor variable names, specified as a string array of unique names or cell array of unique character vectors. The functionality of 'PredictorNames' depends on the way you supply the training data.

  • If you supply X and Y, then you can use 'PredictorNames' to assign names to the predictor variables in X.

    • The order of the names in PredictorNames must correspond to the predictor order in X. Assuming that X has the default orientation, with observations in rows and predictors in columns, PredictorNames{1} is the name of X(:,1), PredictorNames{2} is the name of X(:,2), and so on. Also, size(X,2) and numel(PredictorNames) must be equal.

    • By default, PredictorNames is {'x1','x2',...}.

  • If you supply Tbl, then you can use 'PredictorNames' to choose which predictor variables to use in training. That is, fitcnet uses only the predictor variables in PredictorNames and the response variable during training.

    • PredictorNames must be a subset of Tbl.Properties.VariableNames and cannot include the name of the response variable.

    • By default, PredictorNames contains the names of all predictor variables.

    • A good practice is to specify the predictors for training using either 'PredictorNames' or formula, but not both.

Example: 'PredictorNames',{'SepalLength','SepalWidth','PetalLength','PetalWidth'}

Data Types: string | cell

Since R2023a

Prior class probabilities, specified as a value in this table.

ValueDescription
"empirical"The class prior probabilities are the class relative frequencies in Y.
"uniform"All class prior probabilities are equal to 1/K, where K is the number of classes.
numeric vectorEach element is a class prior probability. Order the elements according to Mdl.ClassNames or specify the order using the ClassNames name-value argument. The software normalizes the elements to sum to 1.
structure

A structure S with two fields:

  • S.ClassNames contains the class names as a variable of the same type as Y.

  • S.ClassProbs contains a vector of corresponding prior probabilities. The software normalizes the elements to sum to 1.

Example: "Prior",struct("ClassNames",["b","g"],"ClassProbs",1:2)

Data Types: single | double | char | string | struct

Response variable name, specified as a character vector or string scalar.

  • If you supply Y, then you can use ResponseName to specify a name for the response variable.

  • If you supply ResponseVarName or formula, then you cannot use ResponseName.

Example: "ResponseName","response"

Data Types: char | string

Score transformation, specified as a character vector, string scalar, or function handle.

This table summarizes the available character vectors and string scalars.

ValueDescription
"doublelogit"1/(1 + e–2x)
"invlogit"log(x / (1 – x))
"ismax"Sets the score for the class with the largest score to 1, and sets the scores for all other classes to 0
"logit"1/(1 + ex)
"none" or "identity"x (no transformation)
"sign"–1 for x < 0
0 for x = 0
1 for x > 0
"symmetric"2x – 1
"symmetricismax"Sets the score for the class with the largest score to 1, and sets the scores for all other classes to –1
"symmetriclogit"2/(1 + ex) – 1

For a MATLAB function or a function you define, use its function handle for the score transform. The function handle must accept a matrix (the original scores) and return a matrix of the same size (the transformed scores).

Example: "ScoreTransform","logit"

Data Types: char | string | function_handle

Observation weights, specified as a nonnegative numeric vector or the name of a variable in Tbl. The software weights each observation in X or Tbl with the corresponding value in Weights. The length of Weights must equal the number of observations in X or Tbl.

If you specify the input data as a table Tbl, then Weights can be the name of a variable in Tbl that contains a numeric vector. In this case, you must specify Weights as a character vector or string scalar. For example, if the weights vector W is stored as Tbl.W, then specify it as 'W'. Otherwise, the software treats all columns of Tbl, including W, as predictors or the response variable when training the model.

By default, Weights is ones(n,1), where n is the number of observations in X or Tbl.

The software normalizes Weights to sum to the value of the prior probability in the respective class.

Data Types: single | double | char | string

Note

You cannot use any cross-validation name-value argument together with the 'OptimizeHyperparameters' name-value argument. You can modify the cross-validation for 'OptimizeHyperparameters' only by using the 'HyperparameterOptimizationOptions' name-value argument.

Cross-Validation Options

collapse all

Flag to train a cross-validated classifier, specified as 'on' or 'off'.

If you specify 'on', then the software trains a cross-validated classifier with 10 folds.

You can override this cross-validation setting using the CVPartition, Holdout, KFold, or Leaveout name-value argument. You can use only one cross-validation name-value argument at a time to create a cross-validated model.

Alternatively, cross-validate later by passing Mdl to crossval.

Example: 'Crossval','on'

Data Types: char | string

Cross-validation partition, specified as a cvpartition object that specifies the type of cross-validation and the indexing for the training and validation sets.

To create a cross-validated model, you can specify only one of these four name-value arguments: CVPartition, Holdout, KFold, or Leaveout.

Example: Suppose you create a random partition for 5-fold cross-validation on 500 observations by using cvp = cvpartition(500,KFold=5). Then, you can specify the cross-validation partition by setting CVPartition=cvp.

Fraction of the data used for holdout validation, specified as a scalar value in the range [0,1]. If you specify Holdout=p, then the software completes these steps:

  1. Randomly select and reserve p*100% of the data as validation data, and train the model using the rest of the data.

  2. Store the compact trained model in the Trained property of the cross-validated model.

To create a cross-validated model, you can specify only one of these four name-value arguments: CVPartition, Holdout, KFold, or Leaveout.

Example: Holdout=0.1

Data Types: double | single

Number of folds to use in the cross-validated model, specified as a positive integer value greater than 1. If you specify KFold=k, then the software completes these steps:

  1. Randomly partition the data into k sets.

  2. For each set, reserve the set as validation data, and train the model using the other k – 1 sets.

  3. Store the k compact trained models in a k-by-1 cell vector in the Trained property of the cross-validated model.

To create a cross-validated model, you can specify only one of these four name-value arguments: CVPartition, Holdout, KFold, or Leaveout.

Example: KFold=5

Data Types: single | double

Leave-one-out cross-validation flag, specified as "on" or "off". If you specify Leaveout="on", then for each of the n observations (where n is the number of observations, excluding missing observations, specified in the NumObservations property of the model), the software completes these steps:

  1. Reserve the one observation as validation data, and train the model using the other n – 1 observations.

  2. Store the n compact trained models in an n-by-1 cell vector in the Trained property of the cross-validated model.

To create a cross-validated model, you can specify only one of these four name-value arguments: CVPartition, Holdout, KFold, or Leaveout.

Example: Leaveout="on"

Data Types: char | string

Hyperparameter Optimization Options

collapse all

Parameters to optimize, specified as one of the following:

  • 'none' — Do not optimize.

  • 'auto' — Use {'Activations','Lambda','LayerSizes','Standardize'}.

  • 'all' — Optimize all eligible parameters.

  • String array or cell array of eligible parameter names.

  • Vector of optimizableVariable objects, typically the output of hyperparameters.

The optimization attempts to minimize the cross-validation loss (error) for fitcnet by varying the parameters. For information about cross-validation loss (although in a different context), see Classification Loss. To control the cross-validation type and other aspects of the optimization, use the HyperparameterOptimizationOptions name-value argument.

Note

The values of OptimizeHyperparameters override any values you specify using other name-value arguments. For example, setting OptimizeHyperparameters to "auto" causes fitcnet to optimize hyperparameters corresponding to the "auto" option and to ignore any specified values for the hyperparameters.

The eligible parameters for fitcnet are:

  • Activationsfitcnet optimizes Activations over the set {'relu','tanh','sigmoid','none'}.

  • Lambdafitcnet optimizes Lambda over continuous values in the range [1e-5,1e5]/NumObservations, where the value is chosen uniformly in the log transformed range.

  • LayerBiasesInitializerfitcnet optimizes LayerBiasesInitializer over the two values {'zeros','ones'}.

  • LayerWeightsInitializerfitcnet optimizes LayerWeightsInitializer over the two values {'glorot','he'}.

  • LayerSizesfitcnet optimizes over the three values 1, 2, and 3 fully connected layers, excluding the final fully connected layer. fitcnet optimizes each fully connected layer separately over 1 through 300 sizes in the layer, sampled on a logarithmic scale.

    Note

    When you use the LayerSizes argument, the iterative display shows the size of each relevant layer. For example, if the current number of fully connected layers is 3, and the three layers are of sizes 10, 79, and 44 respectively, the iterative display shows LayerSizes for that iteration as [10 79 44].

    Note

    To access up to five fully connected layers or a different range of sizes in a layer, use hyperparameters to select the optimizable parameters and ranges.

  • Standardizefitcnet optimizes Standardize over the two values {true,false}.

Set nondefault parameters by passing a vector of optimizableVariable objects that have nondefault values. As an example, this code sets the range of NumLayers to [1 5] and optimizes Layer_4_Size and Layer_5_Size:

load fisheriris
params = hyperparameters('fitcnet',meas,species);
params(1).Range = [1 5];
params(10).Optimize = true;
params(11).Optimize = true;

Pass params as the value of OptimizeHyperparameters. For an example using nondefault parameters, see Customize Neural Network Classifier Optimization.

By default, the iterative display appears at the command line, and plots appear according to the number of hyperparameters in the optimization. For the optimization and plots, the objective function is the misclassification rate. To control the iterative display, set the Verbose field of the HyperparameterOptimizationOptions name-value argument. To control the plots, set the ShowPlots field of the HyperparameterOptimizationOptions name-value argument.

For an example, see Improve Neural Network Classifier Using OptimizeHyperparameters.

Example: 'OptimizeHyperparameters','auto'

Options for optimization, specified as a structure. This argument modifies the effect of the OptimizeHyperparameters name-value argument. All fields in the structure are optional.

Field NameValuesDefault
Optimizer
  • 'bayesopt' — Use Bayesian optimization. Internally, this setting calls bayesopt.

  • 'gridsearch' — Use grid search with NumGridDivisions values per dimension.

  • 'randomsearch' — Search at random among MaxObjectiveEvaluations points.

'gridsearch' searches in a random order, using uniform sampling without replacement from the grid. After optimization, you can get a table in grid order by using the command sortrows(Mdl.HyperparameterOptimizationResults).

'bayesopt'
AcquisitionFunctionName

  • 'expected-improvement-per-second-plus'

  • 'expected-improvement'

  • 'expected-improvement-plus'

  • 'expected-improvement-per-second'

  • 'lower-confidence-bound'

  • 'probability-of-improvement'

Acquisition functions whose names include per-second do not yield reproducible results because the optimization depends on the runtime of the objective function. Acquisition functions whose names include plus modify their behavior when they are overexploiting an area. For more details, see Acquisition Function Types.

'expected-improvement-per-second-plus'
MaxObjectiveEvaluationsMaximum number of objective function evaluations.30 for 'bayesopt' and 'randomsearch', and the entire grid for 'gridsearch'
MaxTime

Time limit, specified as a positive real scalar. The time limit is in seconds, as measured by tic and toc. The run time can exceed MaxTime because MaxTime does not interrupt function evaluations.

Inf
NumGridDivisionsFor 'gridsearch', the number of values in each dimension. The value can be a vector of positive integers giving the number of values for each dimension, or a scalar that applies to all dimensions. This field is ignored for categorical variables.10
ShowPlotsLogical value indicating whether to show plots. If true, this field plots the best observed objective function value against the iteration number. If you use Bayesian optimization (Optimizer is 'bayesopt'), then this field also plots the best estimated objective function value. The best observed objective function values and best estimated objective function values correspond to the values in the BestSoFar (observed) and BestSoFar (estim.) columns of the iterative display, respectively. You can find these values in the properties ObjectiveMinimumTrace and EstimatedObjectiveMinimumTrace of Mdl.HyperparameterOptimizationResults. If the problem includes one or two optimization parameters for Bayesian optimization, then ShowPlots also plots a model of the objective function against the parameters.true
SaveIntermediateResultsLogical value indicating whether to save results when Optimizer is 'bayesopt'. If true, this field overwrites a workspace variable named 'BayesoptResults' at each iteration. The variable is a BayesianOptimization object.false
Verbose

Display at the command line:

  • 0 — No iterative display

  • 1 — Iterative display

  • 2 — Iterative display with extra information

For details, see the bayesopt Verbose name-value argument and the example Optimize Classifier Fit Using Bayesian Optimization.

1
UseParallelLogical value indicating whether to run Bayesian optimization in parallel, which requires Parallel Computing Toolbox™. Due to the nonreproducibility of parallel timing, parallel Bayesian optimization does not necessarily yield reproducible results. For details, see Parallel Bayesian Optimization.false
Repartition

Logical value indicating whether to repartition the cross-validation at every iteration. If this field is false, the optimizer uses a single partition for the optimization.

The setting true usually gives the most robust results because it takes partitioning noise into account. However, for good results, true requires at least twice as many function evaluations.

false
Use no more than one of the following three options.
CVPartitionA cvpartition object, as created by cvpartition'Kfold',5 if you do not specify a cross-validation field
HoldoutA scalar in the range (0,1) representing the holdout fraction
KfoldAn integer greater than 1

Example: 'HyperparameterOptimizationOptions',struct('MaxObjectiveEvaluations',60)

Data Types: struct

Output Arguments

collapse all

Trained neural network classifier, returned as a ClassificationNeuralNetwork or ClassificationPartitionedModel object.

If you set any of the name-value arguments CrossVal, CVPartition, Holdout, KFold, or Leaveout, then Mdl is a ClassificationPartitionedModel object. Otherwise, Mdl is a ClassificationNeuralNetwork model.

To reference properties of Mdl, use dot notation.

More About

collapse all

Neural Network Structure

The default neural network classifier has the following layer structure.

StructureDescription

Default neural network classifier structure, with one customizable fully connected layer with a ReLU activation

Input — This layer corresponds to the predictor data in Tbl or X.

First fully connected layer — This layer has 10 outputs by default.

  • You can widen the layer or add more fully connected layers to the network by specifying the LayerSizes name-value argument.

  • You can find the weights and biases for this layer in the Mdl.LayerWeights{1} and Mdl.LayerBiases{1} properties of Mdl, respectively.

ReLU activation function — fitcnet applies this activation function to the first fully connected layer.

  • You can change the activation function by specifying the Activations name-value argument.

Final fully connected layer — This layer has K outputs, where K is the number of classes in the response variable.

  • You can find the weights and biases for this layer in the Mdl.LayerWeights{end} and Mdl.LayerBiases{end} properties of Mdl, respectively.

Softmax function (for both binary and multiclass classification) — fitcnet applies this activation function to the final fully connected layer. The function takes each input xi and returns the following, where K is the number of classes in the response variable:

f(xi)=exp(xi)j=1Kexp(xj).

The results correspond to the predicted classification scores (or posterior probabilities).

Output — This layer corresponds to the predicted class labels.

For an example that shows how a neural network classifier with this layer structure returns predictions, see Predict Using Layer Structure of Neural Network Classifier.

Tips

  • Always try to standardize the numeric predictors (see Standardize). Standardization makes predictors insensitive to the scales on which they are measured.

  • After training a model, you can generate C/C++ code that predicts labels for new data. Generating C/C++ code requires MATLAB Coder™. For details, see Introduction to Code Generation.

Algorithms

collapse all

Training Solver

fitcnet uses a limited-memory Broyden-Fletcher-Goldfarb-Shanno quasi-Newton algorithm (LBFGS) [3] as its loss function minimization technique, where the software minimizes the cross-entropy loss. The LBFGS solver uses a standard line-search method with an approximation to the Hessian.

Cost, Prior, and Weights

  • If you specify the Cost, Prior, and Weights name-value arguments, the output model object stores the specified values in the Cost, Prior, and W properties, respectively. The Cost property stores the user-specified cost matrix as is. The Prior and W properties store the prior probabilities and observation weights, respectively, after normalization. For details, see Misclassification Cost Matrix, Prior Probabilities, and Observation Weights.

  • The software uses the Cost property for prediction, but not training. Therefore, Cost is not read-only; you can change the property value by using dot notation after creating the trained model.

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, pp. 249–256. 2010.

[2] He, Kaiming, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. “Delving deep into rectifiers: Surpassing human-level performance on imagenet classification.” In Proceedings of the IEEE international conference on computer vision, pp. 1026–1034. 2015.

[3] Nocedal, J. and S. J. Wright. Numerical Optimization, 2nd ed., New York: Springer, 2006.

Extended Capabilities

Version History

Introduced in R2021a

expand all