tensorflow中的一些操作和numpy中的很像,下面列出几个比较常见的操作 import tensorflow as tf #定义三行四列的零矩阵 tf.zeros([3,4]) #定义两行三列的全1矩阵 tf.ones([2,3]) #定义常量 tensor = tf.constant([1,2,3,4,5,6,7]) #定义两行三列全为-1的矩阵 tensor = tf.constant(-1.0.shape=[2,3]) #[10 11 12] tf.linspace(10.0,12…