AttributeError: 'Tensor' object has no attribute 'astype'
时间: 2023-06-22 16:27:09 浏览: 333
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
对不起,我的回答有误。在PyTorch中,Tensor对象没有astype()方法。如果你需要更改张量的数据类型,可以使用`.to()`方法。例如,将张量转换为int64类型,你可以这样做:
```python
tensor = tensor.to(torch.int64)
```
在这里,`tensor`是你要转换数据类型的张量,`torch.int64`是你要转换成的数据类型。
阅读全文