(self, load_path)
| 9 | self.load(load_path) |
| 10 | |
| 11 | def load(self, load_path): |
| 12 | self.load_path = load_path |
| 13 | self.cache = np.load(load_path, allow_pickle=True) |
| 14 | self.data_len = self.cache['data_len'] |
| 15 | assert self.data_len == len(self.cache) - 1 |
| 16 | self.cache = None |
| 17 | |
| 18 | @classmethod |
| 19 | def save(cls, save_path, data_list): |
no outgoing calls
no test coverage detected