Is there any way, I can print the summary of a model in PyTorch like model.summary() method does in Keras as follows?
model.summary()
Model Summary: ___________
AFAK there is no model.summary() like equivalent in pytorch
Meanwhile you can refer script by szagoruyko, which gives a nice visualizaton like in resnet18-example
Cheers