Devin Caplow Munro
Devin Caplow Munro
I'm getting an error running this: `"name 'nn' is not defined"`
OK, this is working for me with: ```python import torch repo = "isl-org/ZoeDepth" model_zoe_nk = torch.hub.load(repo, "ZoeD_NK", pretrained=False) pretrained_dict = torch.hub.load_state_dict_from_url('https://github.com/isl-org/ZoeDepth/releases/download/v1.0/ZoeD_M12_NK.pt', map_location='cpu') model_zoe_nk.load_state_dict(pretrained_dict['model'], strict=False) for b in model_zoe_nk.core.core.pretrained.model.blocks: b.drop_path =...
Hey @ducha-aiki, any chance you know of a workaround for the issue I'm having in #84?