Hello, I"m having some difficulty at the exercise 1
Initially, I attempted to use a Lambda
layer for slicing the timesteps, but encountered an error indicating an expected TensorFlowOpLayer
with shape (None, 90)
,
To address this, I switched to using tf.slice
to select the timesteps directly, hoping to avoid introducing the unwanted dimension whereas my operation resulted in a value with shape (None, 1, 90)
.
I worked ! Thank you so much for your time