0 您可以使用tf.reshape 例如: import tensorflow as tf x = tf.constant(2) x_1d = tf.reshape(x, [1]) 來源 2017-02-10 14:03:58 Jenny