gpt4 book ai didi

Pytorch Tensor 对 LongTensor 的帮助

转载 作者:行者123 更新时间:2023-12-02 15:42:29 24 4
gpt4 key购买 nike

a=[1,2,3];
context_var = autograd.Variable(torch.LongTensor(a))

这是一个错误

RuntimeError: tried to construct a tensor from a int sequence, but found an item of type numpy.int32 at index

我不知道如何克服这个问题。

最佳答案

您的代码在最新版本的 pytorch 中运行得非常好。但对于旧版本,您可以使用 .tolist() 方法将 numpy 数组转换为列表,如下所示,以消除错误。

a=[1,2,3];
context_var = autograd.Variable(torch.LongTensor(a.tolist()))

关于Pytorch Tensor 对 LongTensor 的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47194626/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com