我在这里关注 youtube上的观点,
它显示了代码
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)
但它引发 ValueError 如下:
ValueError:张量转换请求的 dtype int32 用于带有 dtype 字符串的张量:
请问有什么问题吗?