在PyTorch中,可以使用torch.LongTensor()
函数将torch.int64
类型的张量转换为torch.LongTensor
类型的张量。
具体的代码示例如下:
import torch
# 创建一个torch int64类型的张量
int64_tensor = torch.tensor([1, 2, 3], dtype=torch.int64)
# 将torch int64类型的张量转换为torch LongTensor类型的张量
long_tensor = torch.LongTensor(int64_tensor)
print(long_tensor)
输出结果为:
tensor([1, 2, 3])
在这个例子中,我们首先创建了一个torch int64
类型的张量int64_tensor
,然后使用torch.LongTensor()
函数将其转换为torch LongTensor
类型的张量long_tensor
。最后,我们打印输出了转换后的张量long_tensor
。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云