问题

使用IEG系列过程中,发生如下问题RuntimeError: element 0 of tensors does not require grad and does not have a grad_fn

image-20210203004302851

原因

模型写错了!!要注意要用meta module!!不能常规的nn.Module,因为这里面返回的params都是nn.Paramter而非像MetaModule那样是torch.tensor

image-20210203004956976

解决方法

直接改回来就好了!!