Main Content

view

View shallow neural network

    Syntax

    Description

    view(net) opens a window that shows your shallow neural network (specified by net) as a graphical diagram.

    Tip

    To visualize deep learning networks, see Deep Network Designer.

    Examples

    collapse all

    This example shows how to view the diagram of a pattern recognition network.

    [x,t] = iris_dataset;
    net = patternnet;
    net = configure(net,x,t);
    view(net)

    Input Arguments

    collapse all

    Neural network, specified as a network object. To create a network object, use for example, feedforwardnet or narxnet.

    Version History

    Introduced in R2008a