Keras's RepeatVector layer allows me to repeat a given vector/Tensor n
times: https://www.tensorflow.org/api_docs/python/tf/keras/layers/RepeatVector.
However, it appears n
has to be a constant. Is there any way to specify this parameter dynamically?
Use case: I'm generating variable length sequences, and RepeatVector will be followed by an LSTM layer.