I am following the view on youtube here,
it shows the code
text_1 = tf.ragged.constant(
[['who','is', 'Goerge', 'Washington'],
['What', 'is', 'the', 'weather', 'tomorrow']])
text_2 = tf.ragged.constant(['goodnight'])
text = tf.concat(text_1, text_2)
print(text)
But it raises the ValueError as follows:
ValueError: Tensor conversion requested dtype int32 for Tensor with dtype string:
What is wrong please?