Pytorch出现:Expected object of scalar type Long but got scalar type Float for argument问题
Expected object of scalar type Long but got scalar type Float for argument
首先将他翻译过来是:希望得到的是Long型标量数据,但是却得到了Float型数据。
在pytorch中Long型数据代表着整型,而float代表着浮点型,因此后者可能出现小数。因此,我们在使用中要将对应的数据转化为Long型数据。
Longtensor()
或者看下面例子,将其转化