ZeroShape / model /depth /base_model.py
zxhuang1698's picture
initial commit
414b431
raw
history blame
414 Bytes
# modified from https://github.com/isl-org/DPT
import torch
class BaseModel(torch.nn.Module):
def load(self, path):
"""Load model from file.
Args:
path (str): file path
"""
parameters = torch.load(path, map_location=torch.device('cpu'))
if "optimizer" in parameters:
parameters = parameters["model"]
self.load_state_dict(parameters)