randn数据时报错:”RuntimeError: “normal_kernel_cpu“ not implemented for ‘Long‘“

问题:

在进行随机正态分布生成时产生报错:”RuntimeError: “normal_kernel_cpu“ not implemented for ‘Long‘“。

解决方案:

torch.normal(mean=torch.full([10],0),std=torch.arange(1,0,-0.1))

中的“0”之后添加一个“.”

torch.normal(mean=torch.full([10],0.),std=torch.arange(1,0,-0.1))

已解决。

你可能感兴趣的:(基于深度学习的人工智障,pytorch,深度学习,cnn)