我在图像处理机器学习中的预测代码有错误,这是我的代码
# 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)