【发布时间】:2021-12-25 11:19:35
【问题描述】:
我有这段代码,它采用形状为(3, 3) 的张量并将其重塑为(9,)。之后,它会应用 one_hot 函数,但会引发错误。
这是代码:
import tensorflow as tf
t1 = tf.constant([[1, 0, 0], [0, 1, 0], [0, 0, 1]], dtype=tf.float32)
t2 = tf.constant([[1], [-1], [1]], dtype=tf.float32)
print(tf.one_hot(tf.reshape(t1, -1), depth=2))
错误是:
InvalidArgumentError: Value for attr 'TI' of float is not in the list of allowed values: uint8, int32, int64
; NodeDef: {{node OneHot}}; Op<name=OneHot; signature=indices:TI, depth:int32, on_value:T, off_value:T -> output:T; attr=axis:int,default=-1; attr=T:type; attr=TI:type,default=DT_INT64,allowed=[DT_UINT8, DT_INT32, DT_INT64]> [Op:OneHot]
我正在使用 GoogleColab 笔记本,所以我认为问题可能出在 TensorFlow 的版本或张量的数据类型上,但任何其他解决方案都会受到赞赏。
【问题讨论】:
标签: python tensorflow machine-learning math google-colaboratory