(self)
| 138 | save_graphs(graph_path, self._graph) |
| 139 | |
| 140 | def load(self): |
| 141 | graph_path = os.path.join(self.save_path, "dgl_graph.bin") |
| 142 | g, _ = load_graphs(graph_path) |
| 143 | self._graph = g[0] |
| 144 | |
| 145 | @property |
| 146 | def num_classes(self): |
no test coverage detected