Buckets:
| # -*- coding: utf-8 -*- | |
| # Copyright (c) Alibaba, Inc. and its affiliates. | |
| 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'), weights_only=True) | |
| if 'optimizer' in parameters: | |
| parameters = parameters['model'] | |
| self.load_state_dict(parameters) | |
Xet Storage Details
- Size:
- 460 Bytes
- Xet hash:
- ad17de2529de545491568a69a510caf04e2ca034d4773abfca8d9b3e89a69c3e
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.