keras导入模型预测时报错ValueError: Error when checking input: expected conv2d_1_input to have 4 dimensions, b

ValueError: Error when checking input: expected conv2d_1_input to have 4 dimensions, but got array with shape (X, X, X)

解决方法:原因是输入的第一个dimension是bachsize,所以需要将数据reshape为(1,X, X, X)。

你可能感兴趣的:(keras,keras,python,模型预测,predict)