> coord-6ren">
gpt4 book ai didi

python - 从 SparseTensorValue 访问值

转载 作者:行者123 更新时间:2023-12-05 07:30:43 25 4
gpt4 key购买 nike

我正在解析一个 tfrecord 文件。我在 SparceTensorValue 中得到了一些坐标。这是我从打印品中得到的:

>> print("coords: ", coords)

>> coords: SparseTensorValue(indices=array([[0],
[1],
[2],
[3],
[4]]), values=array([0.19 , 0.43666667, 0.555 , 0.7416667 , 0.90166664],
dtype=float32), shape=array([5]))

如何以简洁的方式访问值?

我想要的是一个 numpy 数组:

[0.19, 0.44, 0.55, 0.74, 0.90]

最佳答案

这实际上比我想象的要容易得多。结果我只需要执行以下操作:

>> print("coords: ",coords.values)
>> coords: [0.19 0.43666667 0.555 0.7416667 0.90166664]

关于python - 从 SparseTensorValue 访问值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52110635/

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