Spaces:
Running
Running
| import torch.nn as nn | |
| from abc import * | |
| class BaseModel(nn.Module, metaclass=ABCMeta): | |
| def __init__(self, args): | |
| super().__init__() | |
| self.args = args | |
| def code(cls): | |
| pass | |