如何查看tensor类型数据的值

我们在建立图(Graph)的时候,只定义 tensor 的结构形状信息 ,并没有执行数据的操作

print函数 只能打印输出tensor的shape信息,而不能直接显示tensor的值

解决方法:

    方法一:在会话中print( sess.run(x) )

import tensorflow as tf
#定义tensor常量
x = tf.random_uniform((2, 3), -1, 1)

#开启会话
with tf.Session() as sess:
    print (sess.run(x))

    方法二:使用.eval()相当于将tensor类数据转为numpy,再输出

import tensorflow as tf
#定义tensor常量
x = tf.random_uniform((2, 2), -1, 1)

#开启会话
with tf.Session() as sess:
    print (x.eval())

还可以使用 tf.conver_to_tensor函数把numpy转为tensor类数据:

     import tensorflow as tf
     a = tf.constant(2.1)       #定义tensor常量
     with tf.Session() as sess:
           b=a.eval()
           b=tf.convert_to_tensor(a)
           print (b)

你可能感兴趣的:(TensorFlow基础知识)