gpt4 book ai didi

python-3.x - Keras:在 Jupyter Notebook 中显示模型形状

转载 作者:行者123 更新时间:2023-12-03 22:05:40 25 4
gpt4 key购买 nike

我有以下代码用于查看我的网络架构。

enter image description here

但是,我也想看到每一层的形状,所以我尝试使用以下内容:

from keras.utils import plot_model
#plot_model(model, show_shapes=True, show_layer_names=True, to_file='model.png')
plot_model(model, show_shapes=True, show_layer_names=True)

输出文件“model.png”看起来不错。但我无法让它显示在 Jupyter Notebook 中。知道我错过了什么吗?谢谢!

最佳答案

由于生成的图像不再是 svg 文件,因此您应该替换 SVGImage

from IPython.display import Image 
...

plot_model(model, show_shapes=True, show_layer_names=True, to_file='model.png')
Image('model.png')

关于python-3.x - Keras:在 Jupyter Notebook 中显示模型形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57419094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com