pytorch
惊醒幡然1
这个作者很懒,什么都没留下…
展开
-
Missing key(s) in state_dict
pytorch加载模型时报错RuntimeError: Error(s) in loading state_dict for DataParallel:Missing key(s) in state_dict: “module.backbone.layers.0.stage_1.layers.0.weight”,这是因为加载的预训练模型之前使用了torch.nn.DataParallel(),而此时没有使用,所以可以加上该模块或者去掉。解决方法一:加上torch.nn.DataParallel()模原创 2020-10-07 20:34:04 · 12839 阅读 · 0 评论 -
Pytorch的tensor与numpy的转化
1.numpy转为tensornp2tensor = torch.fromnumpy(numpy1) # numpy1为ndarray2.tensor转为numpy tensor2np = tensor1.numpy() # tensor1为tensor但是有可能会有这个错误:TypeError: can’t convert CUDA tensor to numpy. Use Tensor.cpu() to copy the tensor那么将tensor先拷贝到CPU再转 tenso原创 2020-07-03 08:56:52 · 1001 阅读 · 0 评论