Keras plot_model输出上的问号(?)

时间:2020-05-05 23:21:05

标签: python matplotlib keras

使用Keras,我以这种方式绘制模型:

import keras
import pydotplus
from keras.utils.vis_utils import model_to_dot
keras.utils.vis_utils.pydot = pydot

#plot_model(loaded_model, to_file='model.png')

tf.keras.utils.plot_model(loaded_model, to_file='model_plot.png', show_shapes=True, show_layer_names=True)

但是,绘图工作正常,每个形状的第一个都出现问号(“?”)。例如: 输入:[(?, 1250,2)]

问号是否与“无”相同? (here解释了“无”)如果不是,原因是什么??

enter image description here

0 个答案:

没有答案