在 Torch 中可视化神经网络层,无需 itorch

Visualize Neural Net Layers in Torch, without itorch

我有一个包含多个卷积层的神经网络,我想可视化我正在创建的特征图。

我看过这个 post:

建议使用 itorch,但它需要 运行 我希望避免使用 itorch 笔记本中的代码。

是否有任何其他 Torch 包可用于可视化卷积层?

编辑(详细解决方案):

由于我在网上找到的有关如何执行此操作的资源很少,因此我记录了我的完整解决方案并将其贴在 Github 上。任何想在 Torch 中可视化神经网络的人都可以到这里开始!

https://github.com/egaebel/torch-neural-network-visualization

再次感谢 YuTse 提供的 gnuplot 提示!

gnuplot

火炬控制台模式(itorch) / 火炬模式(th)

require 'image';

a = image.lena();

require 'gnuplot';

gnuplot.figure(1);

gnuplot.imagesc(a[1])