打印张量x的结果是:
x
>>> x = torch.tensor([3]) >>> print(x) tensor([3])
对x.data进行索引得到:
x.data
>>> x.data[0] tensor(3)
如何获取仅为普通非张量值的3?
3
用户名或电子邮箱地址
密码