标签:import ast rgb href 矩阵乘法 element cas 维度 style
torch.mul(a, b)
实现,也可以直接用 *
实现。1 import torch 2 3 a = torch.ones(3,4) 4 print(a) 5 b = torch.Tensor([1,2,3]).reshape((3,1)) 6 print(b) 7 8 print(torch.mul(a, b))
1 tensor([[1., 1., 1., 1.], 2 [1., 1., 1., 1.], 3 [1., 1., 1., 1.]]) 4 tensor([[1.], 5 [2.], 6 [3.]]) 7 tensor([[1., 1., 1., 1.], 8 [2., 2., 2., 2.], 9 [3., 3., 3., 3.]])
标签:import ast rgb href 矩阵乘法 element cas 维度 style
原文地址:https://www.cnblogs.com/vvzhang/p/14438673.html