save the graph list and the labels
(self)
| 232 | return False |
| 233 | |
| 234 | def save(self): |
| 235 | """save the graph list and the labels""" |
| 236 | save_graphs(str(self.graph_path), self._g) |
| 237 | save_info(str(self.info_path), {"num_classes": self.num_classes}) |
| 238 | |
| 239 | def load(self): |
| 240 | graphs, _ = load_graphs(str(self.graph_path)) |
nothing calls this directly
no test coverage detected