本文汇总了全网最为全面的26款神经网络可视化工具,可以帮助大家了解神经网络的结构组成、工作原理和性能表现,从而更好地进行模型调整和优化。也可以画出酷炫的模型图方便模型的展示。具体如下:
1. Net2Vis:是一款自动从Keras代码生成卷积神经网络的抽象可视化的工具。
地址:https://github.com/viscom-ulm/Net2Vis
# You can freely modify this file.
# However, you need to have a function that is named get_model and returns a Keras Model.
import json
import sys
import os
from keras.models import Sequential
fro