码迷,mamicode.com
首页 > 其他好文 > 详细

TensorFlow 定义m行n列 矩阵

时间:2018-09-09 12:02:14      阅读:906      评论:0      收藏:0      [点我收藏+]

标签:run   条件   session   bsp   mat   on()   定义   int   with   

定义a为1行5列的矩阵,b为5行一列的矩阵:

a = tf.constant([[1,2,3,4,5]])
b = tf.constant([[1],
[2],
[3],
[4],
[5]])

满足矩阵相乘的条件,a*b为一个1行1列的矩阵,b*a为5行5列的矩阵:


with tf.Session() as sess:
  print(sess.run(tf.matmul(b, a)))

  print("")
  print(sess.run(tf.matmul(a, b)))

 

输出:

[[ 1 2 3 4 5]
[ 2 4 6 8 10]
[ 3 6 9 12 15]
[ 4 8 12 16 20]
[ 5 10 15 20 25]]


[[55]]

 

TensorFlow 定义m行n列 矩阵

标签:run   条件   session   bsp   mat   on()   定义   int   with   

原文地址:https://www.cnblogs.com/wjbyzsa/p/9612620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!