pytorch KeyError: tensor(1)
pytorch中的tensor不能作为字典的键,输入下面代码会产生错误import torch'''pytorch中的tensor和list不能混用'''a=torch.tensor([1,2,4])b={1:'a',2:'b',4:'d'}c=[b[o] for o in a]print(c)KeyError: tensor(1)正确的是要在循环中临时转成nump...