当前位置:主页 > 软件编程 > Python代码 >

Tensorflow 查看变量的值方法

时间:2020-12-18 01:21:29 | 栏目:Python代码 | 点击:

定义一个变量,直接输出会输出变量的属性,并不能输出变量值。那么怎么输出变量值呢?请看下面得意

import tensorflow as tf 
biases=tf.Variable(tf.zeros([2,3]))#定义一个2x3的全0矩阵 
sess=tf.InteractiveSession()#使用InteractiveSession函数 
biases.initializer.run()#使用初始化器 initializer op 的 run() 方法初始化 'biases'  
print(sess.run(biases))#输出变量值 

控制台输出:

[[ 0. 0. 0.] 
 [ 0. 0. 0.]] 

您可能感兴趣的文章:

相关文章