Traceback (most recent call last):
File "eval.py", line 96, in <module>
model.load_state_dict(model_state_dict)
File "/home/skerit/projects/miniconda3/envs/py35/lib/python3.5/site-packages/torch/nn/modules/module.py", line 777, in load_state_dict
self.__class__.__name__, "\n\t".join(error_msgs)))
RuntimeError: Error(s) in loading state_dict for DataParallel:
size mismatch for module.output.conv.weight: copying a param with shape torch.Size([3, 640, 3, 3]) from checkpoint, the shape in current model is torch.Size([3, 384, 3, 3]).
When I try to load the
RBPN_4x_F11_NTIRE2019.pthpretrained model I get this error:I have no idea where either
640or384is defined in theeval.pyscript, so I'm drawing a blank here