I want to train a deep network starting with the following layer:
model = Sequential() model.add(Conv2D(32, 3, 3, input_shape=(32, 32, 3)))
You should simply apply the following transformation to your input data array.
input_data = input_data.reshape((-1, image_side1, image_side2, channels))