tensorflow2 中tensor转为numpy
第一种使用with
import tensorflow as tf
Test = tf.Variable(10, dtype=tf.int32)
with tf.compat.v1.Session() as sess:
sess.run(tf.compat.v1.global_variables_initializer())
nd_Test = sess.run(Test) #nd_Test就是ndarray类型,可以在此基础上做其他操作
第二种
import tensorflow as tf
Test = tf.Variable(10, dtype=tf.int32)
sess = tf.compat.v1.InteractiveSession()
sess.run(tf.compat.v1.global_variables_initializer())
nd_Test = sess.run(Test) #nd_Test就是ndarray类型,可以在此基础上做其他操作
参考链接:
https://zhuanlan.zhihu.com/p/276187847