当前位置:   article > 正文

UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone...的解决方案

userwarning: to copy construct from a tensor, it is recommended to use sourc

今天跑程序的过程中,遇到两个报错信息,由于不耽误程序的运行,之前一直没有留意,今天给修复了一下bug

报错信息:

UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).   y_support=torch.tensor(y_support,dtype=torch.int64)

解决方案:torch.tensor改为:torch.as

  1. #改之前
  2. y_support=torch.tensor(y_support,dtype=torch.int64)
  3. #改之后
  4. y_support=torch.as_tensor(y_support,dtype=torch.int64)

另一个报错信息:

 UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.

报错原因:

softmax()函数被弃用,虽然程序还是可以运行成功,但是这个做法不被pytorch所赞成。这个写法在早期的pytorch版本是没有警告的,现在因为其他考虑,要加上有指明dim参数。

解决方案: nn.Softmax()改为nn.Softmax(dim=1)

注意:dim=某个数字,这个数字可以根据自己的需要进行更改。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/272300
推荐阅读
相关标签
  

闽ICP备14008679号