How to visualize our network in Matconvnet?

456 Views Asked by At

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

I want to visualize both dagnn and simplenn architectures.

1

There are 1 best solutions below

1
Hossein Kashiani On BEST ANSWER

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.