gpt4 book ai didi

python - 如何将 TF Tensor 持有值转换为 Tensor 持有分类值

转载 作者:行者123 更新时间:2023-12-02 03:20:25 27 4
gpt4 key购买 nike

我正在对 TFRecords 进行配对,它为我提供了一个标签作为数值。但是我需要在读取原始记录时将此值转换为分类向量。我怎样才能做到这一点。这是读取原型(prototype)记录的代码片段:

 def parse(example_proto):
features={'label':: tf.FixedLenFeature([], tf.int64), ...}
parsed_features = tf.parse_single_example(example_proto, features)
label = tf.cast(parsed_features['label'], tf.int32)
# at this point label is a Tensor which holds numerical value
# but I need to return a Tensor which holds categorical vector
# for instance, if my label is 1 and I have two classes
# I need to return a vector [1,0] which represents categorical values

我知道有 tf.keras.utils.to_categorical 函数,但它不将 Tensor 作为输入。

最佳答案

您只需将标签转换为其单热表示(即您描述的表示):

label = tf.cast(parsed_features['label'], tf.int32)
num_classes = 2
label = tf.one_hot(label, num_classes)

关于python - 如何将 TF Tensor 持有值转换为 Tensor 持有分类值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54985037/

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