AttributeError:“Upsample”对象没有属性“recompute_scale_factor”
时间: 2024-05-07 21:18:47 浏览: 88
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常出现在使用旧版本的PyTorch中,因为在新版本中,`recompute_scale_factor`已经被删除了。如果你使用的是旧版本的PyTorch,可以尝试升级到最新版本,或者在代码中避免使用`recompute_scale_factor`。
如果你无法升级PyTorch版本,可以参考以下代码,在使用`Upsample`时避免使用`recompute_scale_factor`:
```
import torch.nn.functional as F
# 使用 F.interpolate 代替 Upsample
x = F.interpolate(x, scale_factor=2, mode='nearest')
```
阅读全文