將pytorch更新到0.4.0最新版後對0.3.1版本代碼會有以下警告,它在提醒用戶下個版本這將成爲一個錯誤spa
- UserWarning: invalid index of a 0-dim tensor. This will be an error in PyTorch 0.5. Use tensor.item() to convert a 0-dim tensor to a Python number
- train_loss += loss.data[0]
- #原語句:
- train_loss+=loss.data[0]
- #修改後:
- train_loss+=loss.item()
- UserWarning: volatile was removed and now has no effect. Use `with torch.no_grad():` instead.
- #原語句
- label = Variable(label.cuda(), volatile=True)
- #修改後語句
- label = Variable(label.cuda())