I have tried tf.linalg.normalize
and it gave me a value error:
ValueError: TypeError: object of type 'RaggedTensor' has no len().
Also I could not make tf.keras.layers.experimental.preprocessing.Normalization()
method work.
Thank you,
I have tried tf.linalg.normalize
and it gave me a value error:
ValueError: TypeError: object of type 'RaggedTensor' has no len().
Also I could not make tf.keras.layers.experimental.preprocessing.Normalization()
method work.
Thank you,
Copyright © 2021 Jogjafile Inc.
I have recreated the Error you were facing and found the solution to fix it. Below is how you can normalize the ragged tensor.
Using tf.linalg.normalize:
Output -
Using math.l2_normalize:
Output -