(self, args)
| 5 | |
| 6 | class Exp_Basic(object): |
| 7 | def __init__(self, args): |
| 8 | self.args = args |
| 9 | self.device = self._acquire_device() |
| 10 | self.model = self._build_model().to(self.device) |
| 11 | self.root_path = args.root_path |
| 12 | |
| 13 | def _build_model(self): |
| 14 | raise NotImplementedError |
nothing calls this directly
no test coverage detected