Hi there!
I’m converting a model written in keras/tf to tflite, which uses the tf.gather operator. I’m getting the following error when trying to pass the indices operand as an uint32 tensor:
TypeError: Value passed to parameter 'indices' has DataType uint32 not in list of allowed values: int16, int32, int64
However I see that for tflite this operand is signless: 'tfl' Dialect | TensorFlow MLIR
I wonder where this mismatch comes from? And is it possible to force passing an uint32?
Thanks in advance!