AttributeError: module 'torch.nn.init' has no attribute 'trunc_normal_'
时间: 2023-06-22 17:19:13 浏览: 345
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你的PyTorch版本太低,不支持`trunc_normal_`初始化方法。`trunc_normal_`是在PyTorch版本1.8中引入的,如果你的PyTorch版本低于1.8,那么你需要更新PyTorch版本或者使用其他的初始化方法。你可以通过以下命令升级PyTorch版本:
```
pip install --upgrade torch
```
如果你无法升级PyTorch版本,你可以使用其他的初始化方法,比如`torch.nn.init.normal_`或`torch.nn.init.xavier_normal_`等。
阅读全文