guys, I download resnet-152 from this url: http://data.mxnet.io/models/imagenet-11k/resnet-152/
Then, I try to plot this resnet with 152 layers in this way:
import mxnet as mx
sym, arg_params, aux_params = mx.model.load_checkpoint('resnet-152', 0)
pltn = mx.viz.plot_network(sym, shape = {'data': (1, 3, 224, 224)}, \
node_attrs = {'shape': 'oval', 'fixedsize': 'false'})
pltn.view('resnet-152')
However, the output pdf file is empty. I can plot LeNet, AlexNet and VGG, but what's wrong with the resnet? Thank you very much.