获取tensorflow中tensor的值

Posted shixisheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取tensorflow中tensor的值相关的知识,希望对你有一定的参考价值。

tensorflow中的tensor值的获取:

import tensorflow as tf

#定义变量a
a=tf.Variable([[[1,2,3],[4,5,6]],[[7,8,9],[10,11,12]]])

#定义索引
indics=[[0,0,0],[0,1,1],[0,1,2]]

#把a中索引为indics的值取出
b=tf.gather_nd(a,indics)

#初始化
init=tf.global_variables_initializer()
with tf.Session() as sess:
    #执行初始化
    sess.run(init)

    #打印结果
    print(a.eval())
    print(b.eval())

 

以上是关于获取tensorflow中tensor的值的主要内容,如果未能解决你的问题,请参考以下文章

tensorflow打印tensor的值

在 Tensorflow.js 中获取张量中项目的值

如何理解TensorFlow中的tensor

在 Tensorflow 2.3.1 中读取损失函数的值

tensorflow怎么返回一个tensor中的数据

TensorFlow.js:那两个张量相等吗?