What does input shape mean in keras?
For instance, I am sending an input of shape (1 x 1440)-> 1 row and 1440 columns(features) to the keras model. There are totally 70,000 such vectors.
But When I query the model for output shape from this layer,
for layer in model.layers:
if layer.name == 'input2':
print layer.output
Output:
Tensor("input2_6:0", shape=(?, 1440), dtype=float32)
It says shape=(?, 1440)
. What does this mean?
Thanks!