@怎么把tensor转变成numpy
1、由于tensorflow的升级,所以要加上tf.vompat.v1.diable_egger_exectution(),具体代码如下
下面展示一些 内联代码片
。
// A code block
a = tf.constant([1,2,3])
tf.compat.v1.diable_eager_exection()
a = tf.compat.v1.Session().run(a)
// An highlighted block
a = tf.constant([1,2,3])
tf.compat.v1.diable_eager_exection()
a = tf.compat.v1.Session().run(a);
这样就弄好了
2、数组(numpy)转化为列表(list)
下面展示一些 内联代码片
。
// A code block
a = [1,2,3]
a = a.tolist()
// An highlighted block
a = [1,2,3]
a = a.tolist()