I’m in the cell trying to test my uncompiled model and am getting various dimension related errors.
If I dumb down the model to just a single Dense neuron with input shape[None,G.WINDOW_SIZE] I get the most helpful error:
WARNING:tensorflow:Model was constructed with shape (None, None, 64) for input KerasTensor(type_spec=TensorSpec(shape=(None, None, 64), dtype=tf.float32, name=‘dense_56_input’), name=‘dense_56_input’, description=“created by layer ‘dense_56_input’”), but it was called on an input with incompatible shape (None, None).
I’m surprised by the actual train_set dimension of None,None, but my CSV reader seems to be working and the rest of the data setup is provided for us.
I’m stuck… any hints based on above?
Thanks,
T.