Pytorch Bugs
本篇用于记录使用Pytorch过程中遇到的bug
AttributeError: module ‘torch.nn._functions’ has no attribute ‘dropout’
1 | Traceback (most recent call last): |
将class FeatureDropoutFunction(torch.nn.functional._functions.dropout.InplaceFunction)更改为class FeatureDropoutFunction(torch.autograd.function.InplaceFunction)