赞
踩
这个报错类型翻译过来就是:有类别概率的目标的预期浮点类型,得 Long
大概意思就是你输入的标签值是浮点数,但实际上你所获得的是Long类型的值
原代码
Train_L = torch.tensor(expect_output,dtype=torch.int64) # int64
label = Variable(Train_L)
解决方法
Train_L = torch.tensor(expect_output,dtype=torch.int64) # int64
label = Variable(Train_L).float()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。