我有一个带有几个卷积层的神经网络,我想要想象我创建的特征图。
我看过这篇文章: Visualize images in intermediate layers in torch (lua)
建议使用itorch,但它需要在itorch笔记本中运行我的代码,我想避免。
是否还有其他Torch软件包可用于可视化卷积图层?
编辑(详细解决方案):
由于我在网上找到的关于如何做到这一点的资源很少,我记录了我的完整解决方案并将其打上了Github。任何想要在火炬中想象神经网络的人都可以到这里开始吧!
https://github.com/egaebel/torch-neural-network-visualization
再次感谢YuTse的gnuplot提示!
答案 0 :(得分:0)
在itorch控制台模式(itorch
)/火炬模式(th
)
require 'image';
a = image.lena();
require 'gnuplot';
gnuplot.figure(1);
gnuplot.imagesc(a[1])