标签: python tensorflow
我必须将张量流标量转换为具有1个元素的1维张量。 我想知道最好的方法是什么?
答案 0 :(得分:0)
您可以使用tf.reshape
tf.reshape
例如:
import tensorflow as tf x = tf.constant(2) x_1d = tf.reshape(x, [1])