analyze deep learning network architecture -凯发k8网页登录
analyze deep learning network architecture
syntax
description
use analyzenetwork
to visualize and understand the
architecture of a network, check that you have defined the architecture correctly, and
detect problems before training. problems that analyzenetwork
detects include missing or unconnected layers, incorrectly sized layer inputs, an
incorrect number of layer inputs, and invalid graph structures.
tip
to interactively visualize, analyze, and train a network, use
deepnetworkdesigner(net)
. for more information, see deep network
designer.
analyzenetwork(
analyzes the
network layers given by the layer array or layer graph layers
)layers
and also detects errors and issues for trainnetwork
workflows.
the function displays an interactive visualization of the network architecture and
provides detailed information about the network layers. the layer information
includes the layer type, the size and format of the layer activations, and the size
and number of learnable and state parameters.
each activation dimension has one of the following labels: s
(spatial), c
(channel), b
(batch),
t
(time or sequence), or u
(unspecified).
analyzenetwork(
analyzes the layer array or layer graph layers
,x1,...,xn
,targetusage="dlnetwork")layers
using the
example networks inputs x1,...,xn
. the software propagates the
example inputs through the network to determine the size and format of layer
activations, the size and number of learnable and state parameters, and the total
number of learnables. use this syntax to analyze a network that has one or more
inputs that are not connected to an input layer.
analyzenetwork(
analyzes the net
,x1,...,xn
)dlnetwork
object net
using
example networks inputs x1,...,xn
. the software propagates the
example inputs through the network to determine the size and format of layer
activations, the size and number of learnable and state parameters, and the total
number of learnables. use this syntax to analyze an uninitialized
dlnetwork
that has one or more inputs that are not connected to
an input layer.
examples
input arguments
version history
introduced in r2018a
see also
deep network designer | | | | | | |