I used the LSTM MODEL of Keras.
input data shape : (None, 210, 4)
'210' is '21 samples * 10'
called input data shape : (None, 21, 4)
It was supposed to be a problem, but it wasn't. ; The predictions are well made.
Can I use this continuously?
How is this possible Why does this problem occur?
WARNING:tensorflow:Model was constructed with shape (None, 210, 4) for input KerasTensor(type_spec=TensorSpec(shape=(None, 210, 4), dtype=tf.float32, name='lstm_input'), name='lstm_input', description="created by layer 'lstm_input'"), but it was called on an input with incompatible shape (None, 21, 4).