Tensorfow:将标量转换为1维张量的最佳方法

时间:2017-02-10 13:37:31

标签: python tensorflow

我必须将张量流标量转换为具有1个元素的1维张量。 我想知道最好的方法是什么?

1 个答案:

答案 0 :(得分:0)

您可以使用tf.reshape

例如:

import tensorflow as tf
x = tf.constant(2)
x_1d = tf.reshape(x, [1])