运行程序后报错RuntimeError: gather(): Expected dtype int64 for index怎么解决
时间: 2023-06-01 11:07:35 浏览: 119
这个问题可能与您使用的语言、框架和代码相关。您可以先检查一下代码中在 gather() 函数中的索引值是否为 int64 类型,如果不是,则需要将其转换为 int64 类型。另外还需要检查一下代码中是否存在语法错误或者其他运行时异常。如果还有问题,您可以提供更多的代码和相关信息,这样我可以更好地帮助您解决问题。
相关问题
改完后还是出现RuntimeError: gather(): Expected dtype int64 for index问题
如果你已经使用了`.to(torch.int64)`将索引张量转换为int64类型,但仍然遇到了`RuntimeError: gather(): Expected dtype int64 for index`错误,可能是因为索引张量中包含了非int64类型的值。你可以使用`.type()`方法将整个张量转换为int64类型,例如:
```python
indices = indices.type(torch.int64)
output = torch.gather(input, dim, indices)
```
在这里,`indices`是你要用来索引的张量,`input`是你要从中取值的张量,`dim`是你要在哪个维度上进行gather操作。
阅读全文