1. 首页
  2. 数据库
  3. 其它
  4. TensorFlow学习笔记(一)基本操作

TensorFlow学习笔记(一)基本操作

上传者: 2020-12-23 05:37:54上传 PDF文件 47.95KB 热度 19次
TensorFlow学习笔记(一)基本操作 Opation type (1)element-wise ±*/ b=tf.fill([2,2],2.) a=tf.ones([2,2]) a+b,a-b,a*b,a/b,b//a,b%a (2)matrix-wise @,matmul a@b tf.matmul(a, b) (3)dim-wise reduce_mean/max/min/sum x=tf.ones([4,2]) W=tf.ones([2,1]) b=tf.constant(0.1) x@W+b # 合并与分割 (1)concat(拼接) a = tf.ones([4,
用户评论