Model summary for a Image analysis CNN ; Output size for a given CNN layer

Hello,
Is there anything equivalent to a model summary for CNNs in matlab? Something that that would display the OUTPUT SIZE of a given layer of the CNN?

Answers (2)

You can save the layers data in a varibale and then print that variable.
var=layers;
var
if you want specific layer output then
var=layers(layernumber);
var

Categories

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

Asked:

SG
on 21 Jul 2018

Answered:

on 16 Jul 2021

Community Treasure Hunt

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

Start Hunting!