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

pytorch矩阵乘法

时间:2020-04-30 19:10:56      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:div   for   rand   mat   ica   pytho   pytorch   class   矩阵   

torch.mm(mat1, mat2) performs a matrix multiplication of mat1 and mat2

a = torch.randint(0, 5, (2, 3))   # tensor([[3, 3, 2],
                                  #         [2, 2, 2]])
                                  
b = torch.randint(0, 6, (3, 1))   # tensor([[1],
                                  #         [4],
                                  #         [5]])

torch.mm(a, b)   # tensor([[11],
                 #        [17]])

 

pytorch矩阵乘法

标签:div   for   rand   mat   ica   pytho   pytorch   class   矩阵   

原文地址:https://www.cnblogs.com/picassooo/p/12810626.html

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