gpt4 book ai didi

python - tensorflow 2.0.0 中 tf.one_hot 的等效项是什么

转载 作者:太空宇宙 更新时间:2023-11-04 02:01:06 24 4
gpt4 key购买 nike

 train_label = tf.keras.backend.one_hot(train_label,3)
train_label = tf.one_hot(train_label,3)

在tensorflow 2.0.0中报如下错误

InternalError: Could not find valid device for node.

节点:{{node OneHot}}

最佳答案

train_label 应该是一个INT 类型的数据。例如:

train_label = [1, 2 ,3]
train_label = tf.one_hot(train_label,3) // work

train_label = [1., 2., 3.]
train_label = tf.one_hot(train_label,3) // InternalError: Could not find valid device for node.

关于python - tensorflow 2.0.0 中 tf.one_hot 的等效项是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55704258/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com