In the conv-nets model, I know how to visualize the filters, we can do itorch.image(model:get(1).weight)
But how could I efficiently visualize the output images after the convolution? especially those images in the second or third layer in a deep neural network?
Thanks.
Similarly to weight, you can use:
To visualize the weights:
To visualize the feature maps:
For more: https://github.com/torch/tutorials/blob/master/1_get_started.ipynb