Pytorch Can‘t call numpy() on Tensor that requires grad. Use tensor.detach().numpy

Pytorch Can‘t call numpy() on Tensor that requires grad. Use tensor.detach().numpy,第1张

tensor 转 numpy 
一下提醒cpu,一下又说datach,然后我两个都加了就好了。
修改前:
output=output.numpy()
修改后:

output=output.cpu().detach().numpy()

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/728890.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-26
下一篇 2022-04-26

发表评论

登录后才能评论

评论列表(0条)

保存