I have this simple layer for my model
states = Input(shape=(len(inputFinal),))
This should generate a (328,None) but dunno why when I check is inverted
model.inputs
[<tf.Tensor 'input_1:0' shape=(None, 328) dtype=float32>]
And when I try to pass data to the model the layer is not correct
value.shape
(328,)
model.predict(value)
Input 0 of layer dense is incompatible with the layer: expected axis -1 of input shape to have value 328 but received input with shape [None, 1]
I cannot find the problem, any ideas ?