Aamir Bader Shah

Results 1 comments of Aamir Bader Shah

Okay, so I did manage to resolve the error by replacing all the dictionary values as follows: ``` ckpt = torch.load('../../DenseTorch/ckpt/checkpoint.pth.tar') pretrained_dict = ckpt['state_dict'] new_pretrained_dict = {key.replace("module.0.", ""): value for...