Pytorch学习笔记
Manduner_TJU
If you have a dream,you got to protect it!
展开
-
Pytorch实用方法整理(1)——生成随机数Tensor的方法汇总
1,概述在实验中,常用的生成随机数Tensor的方法有:torch.rand() torch.randn() torch.normal() torch.linspace()那这些方法的区别呢?只有弄明白它们之间的区别,才可以在不同的应用场景中运用的得心应手.注:文章内容转自https://zhuanlan.zhihu.com/p/312312102,详述(1)torch...转载 2019-02-15 10:29:50 · 4792 阅读 · 0 评论 -
Pytorch实用方法整理(2)——细节决定成败
1,(a==b).sum()import torcha = torch.tensor([2,3,3,4]) b = torch.tensor([2,2,3,5]) c = torch.tensor([1,2,3])print(a == b) #返回:tensor([1, 0, 1, 0], dtype=torch.uint8) print((a==b).sum().item())...原创 2019-02-25 22:35:03 · 251 阅读 · 0 评论