Clear Filters
Clear Filters

how to plot the neural network obtained as a result of fitcnet output?

4 views (last 30 days)
Hello
I am using Matlab 2021a.
Would any one please help me with the visualization of the neural network generated by fitcnet output "classificationNeuralNetwork".
for example as in code snippet below.
% Train a classifier
% This code specifies all the classifier options and trains the classifier.
classificationNeuralNetwork = fitcnet(...
predictors, ...
response, ...
'LayerSizes', 25, ...
'Activations', 'sigmoid', ...
'Lambda', 0, ...
'IterationLimit', 1000, ...
'Standardize', true, ...
'ClassNames', [0; 1]);

Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!