详细的警告如下:
  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).

feature = torch.tensor(    , dtype=torch.float32)

  其实就是在将某个变量转成tensor过程中指定变量类型警告!
  如果在转为tensor时需要改变变量类型需要用下面的语句

torch.as_tensor(torch.from_numpy(feature), dtype=torch.float32)

参考文献

[1]pytorch神经网络的小问题
[2]使用新版PyTorch运行《动手学深度学习》中的代码

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐