I am trying to visualize the neural network graph created by using mxnet inn python. The code is shown below
net = mx.sym.Variable('data')
net = mx.sym.FullyConnected(data=net, name='fc1', num_hidden=128)
net = mx.sym.Activation(data=net, name='relu1', act_type="relu")
net = mx.sym.FullyConnected(data=net, name='fc2', num_hidden=10)
net = mx.sym.SoftmaxOutput(data=net, name='out')
mx.viz.plot_network(net, shape={'data':(100,200)})
The last line runs without any error and I see this message - graphviz.dot.Digraph at 0x262f91b8e10>
But I do not see any graph. Please note that I have installed graphviz.