In the tensorflow conv1D layer documentation, it says that;
'When using this layer as the first layer in a model, provide an input_shape argument (tuple of integers or None, e.g. (10, 128) for sequences of 10 vectors of 128-dimensional vectors, or (None, 128) for variable-length sequences of 128-dimensional vectors.'
So I understand that we can input variable length sequences but when I use a ragged tensor input for conv1D layer, it gives me an error:
ValueError: Layer conv1d does not support RaggedTensors as input.
What is really meant with variable length sequences if not RaggedTensors?
Thank you,