pytorch
pure water
这个作者很懒,什么都没留下…
展开
-
Error:function ‘LogSoftmaxBackward‘ returned nan values in its 0th output.
pytorch代码小坑原创 2022-01-11 19:58:44 · 6583 阅读 · 4 评论 -
pytorch学习笔记(一)-----基础使用篇
这是学习pytorch的学习笔记,个人记录篇pytorch是一个基于Python的科学计算包,目标用户有两类为了使用GPU来替代numpy一个深度学习研究平台:提供最大的灵活性和速度张量Tensor类似于numpy,但是可以使用GPU来进行相关的计算。创建数组:x = torch.Tensor(5, 3) 维度x = torch.zeros(5, 3, dtype=torch.long) 维度 类型x = torch.tensor([5.5, 3]) 内容x = x.new_ones(原创 2020-05-11 13:34:38 · 1285 阅读 · 0 评论