Search code examples
deep-learningconv-neural-networkmatconvnet

How to visualize our network in Matconvnet?


Is there any function to visualize the network like this? network

I want to visualize both dagnn and simplenn architectures.


Solution

  • Firstly, install Graph Visualization Software (Grphviz) by this link. Then as this describes, you should utilize dot format to take advantage of Grphviz. For instance if you wanna to plot the whole dag network follow as below :

    net.print('format','dot')
    

    If your network is adapted to the SimpleNN structure, initialize a DagNN object from a SimpleNN network and then plot it.