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)。
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)。