一图抵千言 | 神经网络绘图篇!涵盖NN-SVG、PlotNeuralNet、Netron等软件!
神经网络绘图篇!本次为大家介绍的是神经网络的可视化工具和绘图软件。在搭建神经网络以及后期论文写作时,可视化的神经网络模型将在很大程度上帮助我们直观地理解模型结构和数据的流动。除了大家常用的 PPT+AI+PS 之外,小助手也为大家整理了Github 上各路大神开发的绘图软件信息。
神经网络绘图软件最新汇总
来自知乎的李佳骏根据软件的便捷及易用性,美观度,是否支持导出,网络结构支持度,平台和工具支持度,按照满分五颗星的标准进行了评价。
示意图
**NN SVG **★★★★
- 提供 **三种典型 **的神经网络绘图风格,个性化参数多
交互式绘图
jettan/tikz_cnn ★☆
基于tikz的tex的宏指令绘制
绘制脚本繁杂
PlotNeuralNet ★★★☆
底层基于tikz的tex的宏指令绘制
上层提供基于python的描述框架,绘制脚本简单
可绘制复杂的网络结构
ConvNetDraw ★★
基于javascript和css绘制
仅支持基本Layer类型
gwding/draw_convnet ★★☆
简单易用
底层基于matplotlib绘制
**ajtulloch/dnngraph **(便捷性不好评价,暂不打分)
基于Haskell语言
计算图
lutzroeder/netron ★★★★★
支持工具: ONNX, Keras, CoreML, Caffe2, MXNet, TensorFlow Lite, Caffe, PyTorch, Torch, CNTK, PaddlePaddle, Darknet, scikit-learn, TensorFlow.js, TensorFlow.
提供运行方式: 浏览器, Python Server; macOS, Linux, Windows
draw_net.py ★★☆
caffe自带的画图工具
Netscope ★★★
非常易用
仅支持网页版
Netscope-dgschwend ★★★☆
基于Netscope二次开发
给出网络的各种计算操作次数(非常方便!)
**TFLearn **★★★☆
其子工具提供了模型可视化的功能
Tensorboard ★★★
其子工具提供了模型可视化的功能
NN-SVG
Github 地址:
- https://github.com/alexlenail/NN-SVG
画图工具体验地址:
- http://alexlenail.me/NN-SVG/
NN-SVG是由来麻省理工学院弗兰克尔生物工程实验室开发的。可以绘制的图包括以节点形式展示的FCNN style,这个特别适合传统的全连接神经网络的绘制。以平铺网络结构展示的LeNet style,用二维的方式,适合查看每一层featuremap的大小和通道数目。以三维block形式展现的AlexNet style,可以更加真实地展示卷积过程中高维数据的尺度的变化,目前只支持卷积层和全连接层。这个工具的优势是操作方便,通过交互式界面直接控制各层增减及变化,支持三种风格,选择空间大,支持SVG格式下载。缺陷是定制化程度低,各连接层不是很好看。
PlotNeuralNetGithub 地址:
- https://lutzroeder.github.io/netron/
PlotNeuralNet是由萨尔大学计算机科学专业的一个学生开发的。目前主要支持的是卷积神经网络,其中卷积层、池化层、bottleneck、skip- connection、up-conv、Softmax等常规的层在代码中都有定义,但是缺少RNN相关的可视化层展示。
代码用Python编写,需要调用LaTex输出PDF格式文档。需要说明的是,该软件在Windows下运行会有很多报错,在Ubuntu系统下则运行正常。接下来我们先看看示例效果。
FCN-8VCG-16Holistically- Nested Edge Detection
PlotNeuralNet的使用方法非常简单,将项目克隆下来之后,想用什么结构,就从PlotNeural里找对应的模块,然后将它们拼接起来就好了,好比UNet:
import sys
sys.path.append('../')
from core.tikzeng
import *from core.blocks import *
arch = [
to_head('..'),
to_cor(),
to_begin(),
#input
to_input( '../examples/fcn8s/cats.jpg' ),
#block-001
to_ConvConvRelu( name='ccr_b1', s_filer=500, n_filer=(64,64), offset="(0,0,0)", to="(0,0,0)", width=(2,2), height=40, depth=40 ),
to_Pool(name="pool_b1", offset="(0,0,0)", to="(ccr_b1-east)", width=1, height=32, depth=32, opacity=0.5),
*block_2ConvPool( name='b2', botton='pool_b1', top='pool_b2', s_filer=256, n_filer=128, offset="(1,0,0)", size=(32,32,3.5), opacity=0.5 ),
*block_2ConvPool( name='b3', botton='pool_b2', top='pool_b3', s_filer=128, n_filer=256, offset="(1,0,0)", size=(25,25,4.5), opacity=0.5 ),
*block_2ConvPool( name='b4', botton='pool_b3', top='pool_b4', s_filer=64, n_filer=512, offset="(1,0,0)", size=(16,16,5.5), opacity=0.5 ),
#Bottleneck
#block-005
to_ConvConvRelu( name='ccr_b5', s_filer=32, n_filer=(1024,1024), offset="(2,0,0)", to="(pool_b4-east)", width=(8,8), height=8, depth=8, caption="Bottleneck" ),
to_connection( "pool_b4", "ccr_b5"),
#Decoder
*block_Unconv( name="b6", botton="ccr_b5", top='end_b6', s_filer=64, n_filer=512, offset="(2.1,0,0)", size=(16,16,5.0), opacity=0.5 ),
to_skip( of='ccr_b4', to='ccr_res_b6', pos=1.25),
*block_Unconv( name="b7", botton="end_b6", top='end_b7', s_filer=128, n_filer=256, offset="(2.1,0,0)", size=(25,25,4.5), opacity=0.5 ),
to_skip( of='ccr_b3', to='ccr_res_b7', pos=1.25),
*block_Unconv( name="b8", botton="end_b7", top='end_b8', s_filer=256, n_filer=128, offset="(2.1,0,0)", size=(32,32,3.5), opacity=0.5 ),
to_skip( of='ccr_b2', to='ccr_res_b8', pos=1.25),
*block_Unconv( name="b9", botton="end_b8", top='end_b9', s_filer=512, n_filer=64, offset="(2.1,0,0)", size=(40,40,2.5), opacity=0.5 ),
to_skip( of='ccr_b1', to='ccr_res_b9', pos=1.25),
to_ConvSoftMax( name="soft1", s_filer=512, offset="(0.75,0,0)", to="(end_b9-east)", width=1, height=40, depth=40, caption="SOFT" ),
to_connection( "end_b9", "soft1"),
to_end()
]
def main():
namefile = str(sys.argv[0]).split('.')[0]
to_generate(arch, namefile + '.tex' )
if __name__ == '__main__':
main()
Netron
Github 地址:
- https://lutzroeder.github.io/netron/
画图工具体验地址:
- https://www.lutzroeder.com/ai/netron/
Netron是一个神经网络可视化包,支持绝大多数神经网络操作。该功能包可以为不同节点显示不同的颜色,卷积层用蓝色显示,池化层和归一化层用绿色显示,数学操作用黑色显示。
在使用方面,你可以直接访问网页端,上传模型文件,就可以看到网络结构图,并可以进一步利用pip安装并引入到程序中通过浏览器查看模型的变化。
如果你想追求个性化设置,可以在Github上下载源码修改相应的设置。如端口后的修改可以在src/init.py中修改,字体颜色可以在src/view- grapher.css中修改。效果如下图所示:
篇幅原因,小助手就不一一为大家罗列了,快去亲自动手试一试吧
当然,还有之前极验为大家整理的大规模图可视化工具
研究图的小伙伴们也操练起来!
Tips: Until now, everytime you want to store your article, we will help you store it in Filecoin network. In the future, you can store it in Filecoin network using your own filecoin.
Support author:
Author's Filecoin address:
Or you can use Likecoin to support author: