IndexError: tensors used as indices must be long, byte or bool tensors
生活随笔
收集整理的這篇文章主要介紹了
IndexError: tensors used as indices must be long, byte or bool tensors
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
下面的程序會報錯IndexError: tensors used as indices must be long, byte or bool tensors
mask = torch.Tensor([True,True,False]) a = torch.Tensor([3,2,1]) a[mask]=0 print(a)原因是索引要為long, byte 或 bool類型,因此需要將mask轉換為bool類型,如下:
mask = torch.Tensor([True,True,False]).type(torch.bool) a = torch.Tensor([3,2,1]) a[mask]=0 print(a) tensor([0., 0., 1.])?
總結
以上是生活随笔為你收集整理的IndexError: tensors used as indices must be long, byte or bool tensors的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JavaSE——类集(下)(Set、Co
- 下一篇: tf.gfile()函数