Tensorflow keras构建模型出现This model has not yet been built. Build the model first by calling
Published on Aug. 22, 2023, 12:11 p.m.
Tensorflow keras构建模型出现如下问题,
在调用model.summary()
时候报错
ValueError: This model has not yet been built. Build the model first by calling
build()
or by calling the model on a batch of data.
错误问题在于:
This model has not yet been built. Build the model first by calling build()
只需要在summary前加上
#加上这句
model.build(input_shape) # `input_shape` is the shape of the input data
# e.g. input_shape = (None, 32, 32, 3)
model.summary()