ValueError: 层顺序的输入 0 与层不兼容::预期 min_ndim=4,发现 ndim=3。收到完整形状:(无,1024,3)

时间:2021-04-04 02:21:20

标签: python tensorflow keras

我在图像处理机器学习中的预测代码有错误,这是我的代码

# load the trained model
model = load_model('./model/modelLeNet5.h5')
x=(img1/255)

# predict the input image using the loaded model
pred1 = model.predict_classes(x)

错误说:

<块引用>

ValueError: 层顺序的输入 0 与 层::预期 min_ndim=4,发现 ndim=3。收到的完整形状: (无, 1024, 3)

0 个答案:

没有答案