
~~~Bug解决~~~
NANCYGOODENOUGH
这个作者很懒,什么都没留下…
展开
-
Bug解决-Torch.save FileNotFoundError: [Errno 2] No such file or directory
Bug解决-Torch.save FileNotFoundError: [Errno 2] No such file or directory原创 2022-07-26 15:01:21 · 4560 阅读 · 0 评论 -
Bug解决-TypeError: can‘t convert CUDA tensor to numpy. Use Tensor.cpu() to copy the tensor to host mem
Bug解决-TypeError: can‘t convert CUDA tensor to numpy. Use Tensor.cpu() to copy the tensor to host mem原创 2022-07-21 17:53:29 · 1659 阅读 · 0 评论 -
Bug解决-IndentationError:expected an indented block
Bug解决-IndentationError:expected an indented block原创 2022-07-21 15:10:29 · 569 阅读 · 0 评论 -
Bug解决-RuntimeError: Sizes of tensors must match except in dimension 2. Got 320 and 160 (The offendin
具体来说,就是将原来一个低分辨的像素划分为rr个更小的格子,利用rr个特征图对应位置的值按照一定的规则来填充这些小格子。C=torch.cat((A,B),0)就表示按维数0(行)拼接A和B,也就是竖着拼接,A上B下。C=torch.cat((A,B),1)就表示按维数1(列)拼接A和B,也就是横着拼接,A左B右。.cat是将两个张量(tensor)拼接在一起,cat是concatnate的意思,即拼接,联系在一起。是其属性,而size()是其继承的方法,两者均可以获得tensor的维度。...原创 2022-07-21 10:53:34 · 20577 阅读 · 0 评论 -
Bug解决-PyCharm代码运行不显示Warning
代码】Bug解决-PyCharm代码运行不显示Warning。原创 2022-07-21 09:17:26 · 1349 阅读 · 0 评论 -
Bug解决-TypeError: transpose() received an invalid combination of arguments - got (int, int, int, int)
给transpose传入了错误数量的参数,transpose一次只能调换两个维度。若要交换多个维度建议调用。转载 2022-07-21 09:11:18 · 4631 阅读 · 0 评论